diff --git a/atom.gyp b/atom.gyp index 2daa0c61a90e..f4d52a4b6681 100644 --- a/atom.gyp +++ b/atom.gyp @@ -106,10 +106,10 @@ 'browser/ui/accelerator_util.h', 'browser/ui/accelerator_util_mac.mm', 'browser/ui/accelerator_util_win.cc', - 'browser/ui/atom_event_processing_window.h', - 'browser/ui/atom_event_processing_window.mm', 'browser/ui/atom_menu_controller_mac.h', 'browser/ui/atom_menu_controller_mac.mm', + 'browser/ui/cocoa/event_processing_window.h', + 'browser/ui/cocoa/event_processing_window.mm', 'browser/ui/cocoa/nsalert_synchronous_sheet.h', 'browser/ui/cocoa/nsalert_synchronous_sheet.mm', 'browser/ui/file_dialog.h', diff --git a/browser/native_window_mac.mm b/browser/native_window_mac.mm index 93ad1ff19dce..481419c69533 100644 --- a/browser/native_window_mac.mm +++ b/browser/native_window_mac.mm @@ -14,7 +14,7 @@ #include "base/mac/scoped_nsobject.h" #include "base/strings/sys_string_conversions.h" #include "base/values.h" -#import "browser/ui/atom_event_processing_window.h" +#import "browser/ui/cocoa/event_processing_window.h" #include "brightray/browser/inspectable_web_contents.h" #include "brightray/browser/inspectable_web_contents_view.h" #include "common/draggable_region.h" @@ -76,7 +76,7 @@ static const CGFloat kAtomWindowCornerRadius = 4.0; @end -@interface AtomNSWindow : AtomEventProcessingWindow { +@interface AtomNSWindow : EventProcessingWindow { @protected atom::NativeWindowMac* shell_; } @@ -440,9 +440,9 @@ void NativeWindowMac::HandleKeyboardEvent( event.type == content::NativeWebKeyboardEvent::Char) return; - AtomEventProcessingWindow* event_window = - static_cast(window()); - DCHECK([event_window isKindOfClass:[AtomEventProcessingWindow class]]); + EventProcessingWindow* event_window = + static_cast(window()); + DCHECK([event_window isKindOfClass:[EventProcessingWindow class]]); [event_window redispatchKeyEvent:event.os_event]; } diff --git a/browser/ui/atom_event_processing_window.h b/browser/ui/cocoa/event_processing_window.h similarity index 79% rename from browser/ui/atom_event_processing_window.h rename to browser/ui/cocoa/event_processing_window.h index 92a24712468c..00872a39e501 100644 --- a/browser/ui/atom_event_processing_window.h +++ b/browser/ui/cocoa/event_processing_window.h @@ -2,15 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef ATOM_BROWSER_UI_ATOM_EVENT_PROCESSING_WINDOW_H_ -#define ATOM_BROWSER_UI_ATOM_EVENT_PROCESSING_WINDOW_H_ +#ifndef ATOM_BROWSER_UI_COCOA_EVENT_PROCESSING_WINDOW_H_ +#define ATOM_BROWSER_UI_COCOA_EVENT_PROCESSING_WINDOW_H_ #import // Override NSWindow to access unhandled keyboard events (for command // processing); subclassing NSWindow is the only method to do // this. -@interface AtomEventProcessingWindow : NSWindow { +@interface EventProcessingWindow : NSWindow { @private BOOL redispatchingEvent_; BOOL eventHandled_; @@ -27,4 +27,4 @@ - (BOOL)performKeyEquivalent:(NSEvent*)theEvent; @end -#endif // ATOM_BROWSER_UI_ATOM_EVENT_PROCESSING_WINDOW_H_ +#endif // ATOM_BROWSER_UI_COCOA_EVENT_PROCESSING_WINDOW_H_ diff --git a/browser/ui/atom_event_processing_window.mm b/browser/ui/cocoa/event_processing_window.mm similarity index 95% rename from browser/ui/atom_event_processing_window.mm rename to browser/ui/cocoa/event_processing_window.mm index ec287fbba9d1..ce6e9b2f35ae 100644 --- a/browser/ui/atom_event_processing_window.mm +++ b/browser/ui/cocoa/event_processing_window.mm @@ -2,17 +2,17 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#import "browser/ui/atom_event_processing_window.h" +#import "browser/ui/cocoa/event_processing_window.h" #include "base/logging.h" #import "content/public/browser/render_widget_host_view_mac_base.h" -@interface AtomEventProcessingWindow () +@interface EventProcessingWindow () // Duplicate the given key event, but changing the associated window. - (NSEvent*)keyEventForWindow:(NSWindow*)window fromKeyEvent:(NSEvent*)event; @end -@implementation AtomEventProcessingWindow +@implementation EventProcessingWindow - (BOOL)redispatchKeyEvent:(NSEvent*)event { DCHECK(event); @@ -103,4 +103,4 @@ return NO; } -@end // AtomEventProcessingWindow +@end // EventProcessingWindow