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

Unified Diff: ui/message_center/cocoa/settings_controller.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/settings_controller.h
diff --git a/ui/message_center/cocoa/settings_controller.h b/ui/message_center/cocoa/settings_controller.h
index 1ae11c7a9657c5967f61a10ceda0195428bfea8c..2029f6b7a0e2d16e37bd8b886328c9850219ed82 100644
--- a/ui/message_center/cocoa/settings_controller.h
+++ b/ui/message_center/cocoa/settings_controller.h
@@ -7,7 +7,7 @@
#import <Cocoa/Cocoa.h>
-#import "base/memory/scoped_nsobject.h"
+#import "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#include "ui/message_center/message_center_export.h"
#include "ui/message_center/notifier_settings.h"
@@ -45,13 +45,13 @@ MESSAGE_CENTER_EXPORT
message_center::NotifierSettingsProvider* provider_;
// The "Settings" text at the top.
- scoped_nsobject<NSTextField> settingsText_;
+ base::scoped_nsobject<NSTextField> settingsText_;
// The smaller text below the "Settings" text.
- scoped_nsobject<NSTextField> detailsText_;
+ base::scoped_nsobject<NSTextField> detailsText_;
// Container for all the checkboxes.
- scoped_nsobject<NSScrollView> scrollView_;
+ base::scoped_nsobject<NSScrollView> scrollView_;
std::vector<message_center::Notifier*> notifiers_;
}

Powered by Google App Engine
This is Rietveld 408576698