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

Unified Diff: ui/message_center/cocoa/popup_collection.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/message_center/cocoa/popup_collection.h
diff --git a/ui/message_center/cocoa/popup_collection.h b/ui/message_center/cocoa/popup_collection.h
index af06bf5ee9790ea5496296d6523acf2b9770ff22..806114b75016006df893ff1e992c838e1be79029 100644
--- a/ui/message_center/cocoa/popup_collection.h
+++ b/ui/message_center/cocoa/popup_collection.h
@@ -10,7 +10,7 @@
#include <set>
#include "base/mac/scoped_block.h"
-#import "base/memory/scoped_nsobject.h"
+#import "base/mac/scoped_nsobject.h"
#import "base/memory/scoped_ptr.h"
#include "ui/message_center/message_center_export.h"
@@ -37,11 +37,11 @@ MESSAGE_CENTER_EXPORT
scoped_ptr<message_center::MessageCenterObserver> observer_;
// Array of all on-screen popup notifications.
- scoped_nsobject<NSMutableArray> popups_;
+ base::scoped_nsobject<NSMutableArray> popups_;
// Array of all on-screen popup notifications that are being faded out
// for removal.
- scoped_nsobject<NSMutableArray> popupsBeingRemoved_;
+ base::scoped_nsobject<NSMutableArray> popupsBeingRemoved_;
// For testing only. If not a zero rect, this is the screen size to use
// for laying out popups.

Powered by Google App Engine
This is Rietveld 408576698