Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1109)

Unified Diff: ui/base/cocoa/cocoa_event_utils.h

Issue 93863005: ui: Rename ui_export.h to ui_base_export.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: UI_BASE_IMPLEMENTATION Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/cocoa/base_view.h ('k') | ui/base/cocoa/controls/blue_label_button.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « ui/base/cocoa/base_view.h ('k') | ui/base/cocoa/controls/blue_label_button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698