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

Unified Diff: chrome/browser/ui/cocoa/profile_signin_confirmation_view_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: chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller.h
diff --git a/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller.h b/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller.h
index b1e4df6655bd6ccc4c298ecf8208d04b68fb2f4b..ffde5c4bd9a55d1010236b5a27d2d37e30553435 100644
--- a/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller.h
+++ b/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller.h
@@ -9,7 +9,7 @@
#include <string>
#include "base/callback.h"
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#include "chrome/browser/ui/cocoa/constrained_window/constrained_window_button.h"
@class HyperlinkTextView;
@@ -38,14 +38,14 @@ class ProfileSigninConfirmationDelegate;
base::Closure closeDialogCallback_;
// UI elements.
- scoped_nsobject<NSBox> promptBox_;
- scoped_nsobject<NSButton> closeButton_;
- scoped_nsobject<NSTextField> titleField_;
- scoped_nsobject<NSTextField> promptField_;
- scoped_nsobject<NSTextView> explanationField_;
- scoped_nsobject<ConstrainedWindowButton> createProfileButton_;
- scoped_nsobject<ConstrainedWindowButton> cancelButton_;
- scoped_nsobject<ConstrainedWindowButton> okButton_;
+ base::scoped_nsobject<NSBox> promptBox_;
+ base::scoped_nsobject<NSButton> closeButton_;
+ base::scoped_nsobject<NSTextField> titleField_;
+ base::scoped_nsobject<NSTextField> promptField_;
+ base::scoped_nsobject<NSTextView> explanationField_;
+ base::scoped_nsobject<ConstrainedWindowButton> createProfileButton_;
+ base::scoped_nsobject<ConstrainedWindowButton> cancelButton_;
+ base::scoped_nsobject<ConstrainedWindowButton> okButton_;
}
- (id)initWithBrowser:(Browser*)browser

Powered by Google App Engine
This is Rietveld 408576698