| Index: ui/base/window_open_disposition.h
|
| diff --git a/ui/base/window_open_disposition.h b/ui/base/window_open_disposition.h
|
| index 8d9662947f1d39f163bcd77869357551b4de81bd..fe96aac5f07aeacb3eb9307983738b4877557b28 100644
|
| --- a/ui/base/window_open_disposition.h
|
| +++ b/ui/base/window_open_disposition.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef UI_BASE_WINDOW_OPEN_DISPOSITION_H_
|
| #define UI_BASE_WINDOW_OPEN_DISPOSITION_H_
|
|
|
| -#include "ui/base/ui_export.h"
|
| +#include "ui/base/ui_base_export.h"
|
|
|
| enum WindowOpenDisposition {
|
|
|
| @@ -20,16 +20,16 @@ namespace ui {
|
| // Translates event flags from a click on a link into the user's desired
|
| // window disposition. For example, a middle click would mean to open
|
| // a background tab.
|
| -UI_EXPORT WindowOpenDisposition DispositionFromClick(bool middle_button,
|
| - bool alt_key,
|
| - bool ctrl_key,
|
| - bool meta_key,
|
| - bool shift_key);
|
| +UI_BASE_EXPORT WindowOpenDisposition DispositionFromClick(bool middle_button,
|
| + bool alt_key,
|
| + bool ctrl_key,
|
| + bool meta_key,
|
| + bool shift_key);
|
|
|
| // Translates event flags into what kind of disposition they represents.
|
| // For example, a middle click would mean to open a background tab.
|
| // event_flags are the flags as understood by ui::MouseEvent.
|
| -UI_EXPORT WindowOpenDisposition DispositionFromEventFlags(int event_flags);
|
| +UI_BASE_EXPORT WindowOpenDisposition DispositionFromEventFlags(int event_flags);
|
|
|
| } // namespace ui
|
|
|
|
|