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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_suggestion_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_suggestion_container.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_suggestion_container.h b/chrome/browser/ui/cocoa/autofill/autofill_suggestion_container.h
index 6253a20d6f934b300cfaa4626ade815110386bad..6fe11d7f58025d4d44cc238c804e057cd45b513c 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_suggestion_container.h
+++ b/chrome/browser/ui/cocoa/autofill/autofill_suggestion_container.h
@@ -7,7 +7,7 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_layout.h"
namespace autofill {
@@ -20,16 +20,16 @@ namespace autofill {
@interface AutofillSuggestionContainer : NSViewController<AutofillLayout> {
@private
// The label that holds the suggestion description text.
- scoped_nsobject<NSTextField> label_;
+ base::scoped_nsobject<NSTextField> label_;
// The second (and longer) line of text that describes the suggestion.
- scoped_nsobject<NSTextField> label2_;
+ base::scoped_nsobject<NSTextField> label2_;
// The icon that comes just before |label_|.
- scoped_nsobject<NSImageView> iconImageView_;
+ base::scoped_nsobject<NSImageView> iconImageView_;
// The input set by ShowTextfield.
- scoped_nsobject<AutofillTextField> inputField_;
+ base::scoped_nsobject<AutofillTextField> inputField_;
autofill::AutofillDialogController* controller_; // Not owned.
}

Powered by Google App Engine
This is Rietveld 408576698