| 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.
|
| }
|
|
|