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

Unified Diff: ui/message_center/cocoa/notification_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/notification_controller.h
diff --git a/ui/message_center/cocoa/notification_controller.h b/ui/message_center/cocoa/notification_controller.h
index 46965a7ddeb5ff9957dc2453e03dceaef8529375..0d3bc9d1695562aca3abc64c7eddd418416a15ad 100644
--- a/ui/message_center/cocoa/notification_controller.h
+++ b/ui/message_center/cocoa/notification_controller.h
@@ -9,7 +9,7 @@
#include <string>
-#import "base/memory/scoped_nsobject.h"
+#import "base/mac/scoped_nsobject.h"
#include "ui/message_center/message_center_export.h"
namespace message_center {
@@ -35,22 +35,22 @@ MESSAGE_CENTER_EXPORT
message_center::MessageCenter* messageCenter_;
// The button that invokes |-close:|, in the upper-right corner.
- scoped_nsobject<HoverImageButton> closeButton_;
+ base::scoped_nsobject<HoverImageButton> closeButton_;
// The large icon associated with the notification, on the left side.
- scoped_nsobject<NSImageView> icon_;
+ base::scoped_nsobject<NSImageView> icon_;
// The title of the message.
- scoped_nsobject<NSTextField> title_;
+ base::scoped_nsobject<NSTextField> title_;
// Body text of the message.
- scoped_nsobject<NSTextField> message_;
+ base::scoped_nsobject<NSTextField> message_;
// Container for optional list item views.
- scoped_nsobject<NSView> listItemView_;
+ base::scoped_nsobject<NSView> listItemView_;
// Container for optional items at the bottom of the notification.
- scoped_nsobject<NSView> bottomView_;
+ base::scoped_nsobject<NSView> bottomView_;
}
// Creates a new controller for a given notification.

Powered by Google App Engine
This is Rietveld 408576698