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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_section_container.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/autofill/autofill_section_container.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_container.h b/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
index 1abaab039c2656f859b2162d164bc73e6ef06488..62ff41ba3e4e2c5e1728959c070f9ed10083cbf4 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
+++ b/chrome/browser/ui/cocoa/autofill/autofill_section_container.h
@@ -7,7 +7,7 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_layout.h"
@@ -27,13 +27,14 @@ namespace autofill {
@interface AutofillSectionContainer :
NSViewController<AutofillLayout> {
@private
- scoped_nsobject<LayoutView> inputs_;
- scoped_nsobject<MenuButton> suggestButton_;
- scoped_nsobject<AutofillSuggestionContainer> suggestContainer_;
- scoped_nsobject<NSTextField> label_;
- scoped_nsobject<AutofillSectionView> view_; // The view for the container.
+ base::scoped_nsobject<LayoutView> inputs_;
+ base::scoped_nsobject<MenuButton> suggestButton_;
+ base::scoped_nsobject<AutofillSuggestionContainer> suggestContainer_;
+ base::scoped_nsobject<NSTextField> label_;
+ base::scoped_nsobject<AutofillSectionView> view_; // The view for the
+ // container.
- scoped_nsobject<MenuController> menuController_;
+ base::scoped_nsobject<MenuController> menuController_;
autofill::DialogSection section_;
autofill::AutofillDialogController* controller_; // Not owned.
}

Powered by Google App Engine
This is Rietveld 408576698