2016-06-17 17:57:28 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
#ifndef ATOM_BROWSER_UI_COCOA_EVENT_DISPATCHING_WINDOW_H_
|
|
|
|
#define ATOM_BROWSER_UI_COCOA_EVENT_DISPATCHING_WINDOW_H_
|
2016-06-17 17:57:28 +00:00
|
|
|
|
|
|
|
#import "ui/base/cocoa/underlay_opengl_hosting_window.h"
|
|
|
|
|
|
|
|
@interface EventDispatchingWindow : UnderlayOpenGLHostingWindow {
|
|
|
|
@private
|
|
|
|
BOOL redispatchingEvent_;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)redispatchKeyEvent:(NSEvent*)event;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
#endif // ATOM_BROWSER_UI_COCOA_EVENT_DISPATCHING_WINDOW_H_
|