Index: ui/base/cocoa/cocoa_event_utils.h |
diff --git a/ui/base/cocoa/cocoa_event_utils.h b/ui/base/cocoa/cocoa_event_utils.h |
index 1432f2dd6bd99b3129d4f2852c4ff05c846fc057..fda1448d39a418167fdbc1997afc8141feab7073 100644 |
--- a/ui/base/cocoa/cocoa_event_utils.h |
+++ b/ui/base/cocoa/cocoa_event_utils.h |
@@ -7,35 +7,35 @@ |
#import <Cocoa/Cocoa.h> |
-#include "ui/base/ui_export.h" |
+#include "ui/base/ui_base_export.h" |
#include "ui/base/window_open_disposition.h" |
namespace ui { |
// Retrieves a bitsum of ui::EventFlags represented by |event|, |
-UI_EXPORT int EventFlagsFromNSEvent(NSEvent* event); |
+UI_BASE_EXPORT int EventFlagsFromNSEvent(NSEvent* event); |
// Retrieves a bitsum of ui::EventFlags represented by |event|, |
// but instead use the modifier flags given by |modifiers|, |
// which is the same format as |-NSEvent modifierFlags|. This allows |
// substitution of the modifiers without having to create a new event from |
// scratch. |
-UI_EXPORT int EventFlagsFromNSEventWithModifiers(NSEvent* event, |
- NSUInteger modifiers); |
+UI_BASE_EXPORT int EventFlagsFromNSEventWithModifiers(NSEvent* event, |
+ NSUInteger modifiers); |
// Retrieves the WindowOpenDisposition used to open a link from a user gesture |
// represented by |event|. For example, a Cmd+Click would mean open the |
// associated link in a background tab. |
-UI_EXPORT WindowOpenDisposition WindowOpenDispositionFromNSEvent( |
- NSEvent* event); |
+UI_BASE_EXPORT WindowOpenDisposition |
+ WindowOpenDispositionFromNSEvent(NSEvent* event); |
// Retrieves the WindowOpenDisposition used to open a link from a user gesture |
// represented by |event|, but instead use the modifier flags given by |flags|, |
// which is the same format as |-NSEvent modifierFlags|. This allows |
// substitution of the modifiers without having to create a new event from |
// scratch. |
-UI_EXPORT WindowOpenDisposition WindowOpenDispositionFromNSEventWithFlags( |
- NSEvent* event, NSUInteger flags); |
+UI_BASE_EXPORT WindowOpenDisposition |
+ WindowOpenDispositionFromNSEventWithFlags(NSEvent* event, NSUInteger flags); |
} // namespace ui |