summaryrefslogtreecommitdiffstats
path: root/ui/base/cocoa/controls
diff options
context:
space:
mode:
Diffstat (limited to 'ui/base/cocoa/controls')
-rw-r--r--ui/base/cocoa/controls/blue_label_button.h4
-rw-r--r--ui/base/cocoa/controls/hover_image_menu_button.h4
-rw-r--r--ui/base/cocoa/controls/hover_image_menu_button_cell.h4
-rw-r--r--ui/base/cocoa/controls/hyperlink_button_cell.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/ui/base/cocoa/controls/blue_label_button.h b/ui/base/cocoa/controls/blue_label_button.h
index a8d66db..d6d38ec 100644
--- a/ui/base/cocoa/controls/blue_label_button.h
+++ b/ui/base/cocoa/controls/blue_label_button.h
@@ -8,12 +8,12 @@
#import <Cocoa/Cocoa.h>
#import "ui/base/cocoa/hover_button.h"
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
// A rectangular blue NSButton that reacts to hover, focus and lit states. It
// can contain an arbitrary single-line text label, and will be sized to fit the
// font height and label width.
-UI_EXPORT
+UI_BASE_EXPORT
@interface BlueLabelButton : HoverButton
@end
diff --git a/ui/base/cocoa/controls/hover_image_menu_button.h b/ui/base/cocoa/controls/hover_image_menu_button.h
index f6af7bf..86914192 100644
--- a/ui/base/cocoa/controls/hover_image_menu_button.h
+++ b/ui/base/cocoa/controls/hover_image_menu_button.h
@@ -8,7 +8,7 @@
#import <Cocoa/Cocoa.h>
#import "ui/base/cocoa/tracking_area.h"
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
@class HoverImageMenuButtonCell;
@@ -16,7 +16,7 @@
// [[self cell] setHovered:flag] when the hover state changes. Uses
// HoverImageMenuButtonCell as the default cellClass. Note that the menu item at
// index 0 is ignored and client code should populate it with a dummy item.
-UI_EXPORT
+UI_BASE_EXPORT
@interface HoverImageMenuButton : NSPopUpButton {
@private
ui::ScopedCrTrackingArea trackingArea_;
diff --git a/ui/base/cocoa/controls/hover_image_menu_button_cell.h b/ui/base/cocoa/controls/hover_image_menu_button_cell.h
index fad48fe..249a74d 100644
--- a/ui/base/cocoa/controls/hover_image_menu_button_cell.h
+++ b/ui/base/cocoa/controls/hover_image_menu_button_cell.h
@@ -8,13 +8,13 @@
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
// A custom NSPopUpButtonCell that permits a hover image, and draws only an
// image in its frame; no border, bezel or drop-down arrow. Use setDefaultImage:
// to set the default image, setAlternateImage: to set the button shown while
// the menu is active, and setHoverImage: for the mouseover hover image.
-UI_EXPORT
+UI_BASE_EXPORT
@interface HoverImageMenuButtonCell : NSPopUpButtonCell {
@private
base::scoped_nsobject<NSImage> hoverImage_;
diff --git a/ui/base/cocoa/controls/hyperlink_button_cell.h b/ui/base/cocoa/controls/hyperlink_button_cell.h
index 944f0ed..6e3b74d 100644
--- a/ui/base/cocoa/controls/hyperlink_button_cell.h
+++ b/ui/base/cocoa/controls/hyperlink_button_cell.h
@@ -8,7 +8,7 @@
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
// A HyperlinkButtonCell is used to create an NSButton that looks and acts
// like a hyperlink. The default styling is to look like blue, underlined text
@@ -23,7 +23,7 @@
//
// Use this if all of your text is a link. If you need text that contains
// embedded links but also regular text, use HyperlinkTextView.
-UI_EXPORT
+UI_BASE_EXPORT
@interface HyperlinkButtonCell : NSButtonCell {
base::scoped_nsobject<NSColor> textColor_;
BOOL shouldUnderline_;