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

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

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 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
Index: ui/base/cocoa/hover_image_button.h
diff --git a/ui/base/cocoa/hover_image_button.h b/ui/base/cocoa/hover_image_button.h
index 42e0954aa67966bafdb64ec28c9bff561b788275..d43a7fa78ac62efae735417c1c59bc5abfad43a2 100644
--- a/ui/base/cocoa/hover_image_button.h
+++ b/ui/base/cocoa/hover_image_button.h
@@ -7,7 +7,7 @@
#import <Cocoa/Cocoa.h>
-#import "base/memory/scoped_nsobject.h"
+#import "base/mac/scoped_nsobject.h"
#import "ui/base/cocoa/hover_button.h"
#include "ui/base/ui_export.h"
@@ -15,9 +15,9 @@
UI_EXPORT
@interface HoverImageButton : HoverButton {
@private
- scoped_nsobject<NSImage> defaultImage_;
- scoped_nsobject<NSImage> hoverImage_;
- scoped_nsobject<NSImage> pressedImage_;
+ base::scoped_nsobject<NSImage> defaultImage_;
+ base::scoped_nsobject<NSImage> hoverImage_;
+ base::scoped_nsobject<NSImage> pressedImage_;
}
// Sets the default image.

Powered by Google App Engine
This is Rietveld 408576698