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

Unified Diff: chrome/browser/ui/cocoa/extensions/media_galleries_dialog_cocoa.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/extensions/media_galleries_dialog_cocoa.h
diff --git a/chrome/browser/ui/cocoa/extensions/media_galleries_dialog_cocoa.h b/chrome/browser/ui/cocoa/extensions/media_galleries_dialog_cocoa.h
index 74e39cbb2c7c5716b7b89fd50719d076c08d792d..54559af75d6ca049d428637f25cedafbcf0d5a2d 100644
--- a/chrome/browser/ui/cocoa/extensions/media_galleries_dialog_cocoa.h
+++ b/chrome/browser/ui/cocoa/extensions/media_galleries_dialog_cocoa.h
@@ -74,22 +74,22 @@ class MediaGalleriesDialogCocoa : public ConstrainedWindowMacDelegate,
scoped_ptr<ConstrainedWindowMac> window_;
// The alert that the dialog is being displayed as.
- scoped_nsobject<ConstrainedWindowAlert> alert_;
+ base::scoped_nsobject<ConstrainedWindowAlert> alert_;
// True if the user has pressed accept.
bool accepted_;
// List of checkboxes ordered from bottom to top.
- scoped_nsobject<NSMutableArray> checkboxes_;
+ base::scoped_nsobject<NSMutableArray> checkboxes_;
// Container view for checkboxes.
- scoped_nsobject<NSView> checkbox_container_;
+ base::scoped_nsobject<NSView> checkbox_container_;
// Container view for the main dialog contents.
- scoped_nsobject<NSBox> accessory_;
+ base::scoped_nsobject<NSBox> accessory_;
// An Objective-C class to route callbacks from Cocoa code.
- scoped_nsobject<MediaGalleriesCocoaController> cocoa_controller_;
+ base::scoped_nsobject<MediaGalleriesCocoaController> cocoa_controller_;
DISALLOW_COPY_AND_ASSIGN(MediaGalleriesDialogCocoa);
};

Powered by Google App Engine
This is Rietveld 408576698