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

Unified Diff: chrome/browser/ui/cocoa/tabs/throbbing_image_view.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: chrome/browser/ui/cocoa/tabs/throbbing_image_view.h
diff --git a/chrome/browser/ui/cocoa/tabs/throbbing_image_view.h b/chrome/browser/ui/cocoa/tabs/throbbing_image_view.h
index 1cd8d6068a816f1c05c7d3d4ae04694ed14a9d5d..4cf9486ecfcf4b9a514ba7a5b4af1448502c82dc 100644
--- a/chrome/browser/ui/cocoa/tabs/throbbing_image_view.h
+++ b/chrome/browser/ui/cocoa/tabs/throbbing_image_view.h
@@ -7,7 +7,7 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#include "ui/base/animation/throb_animation.h"
@@ -23,8 +23,8 @@ enum ThrobPosition {
@interface ThrobbingImageView : NSView {
@protected
- scoped_nsobject<NSImage> backgroundImage_;
- scoped_nsobject<NSImage> throbImage_;
+ base::scoped_nsobject<NSImage> backgroundImage_;
+ base::scoped_nsobject<NSImage> throbImage_;
scoped_ptr<ui::ThrobAnimation> throbAnimation_;
@private

Powered by Google App Engine
This is Rietveld 408576698