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

Unified Diff: chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.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/location_bar/autocomplete_text_field_editor.h
diff --git a/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.h b/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.h
index 1943ae8f2e9b950d83cf5621873d15fcc5b86782..cf2c5b3f94c027246b1793e45b00deae9979ae9c 100644
--- a/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.h
+++ b/chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.h
@@ -4,7 +4,7 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_nsobject.h"
+#include "base/mac/scoped_nsobject.h"
#import "chrome/browser/ui/cocoa/url_drop_target.h"
@class AutocompleteTextField;
@@ -23,9 +23,9 @@ class AutocompleteTextFieldObserver;
// allowing the |AutocompletTextField| to handle it (by making an empty
// |-updateDragTypeRegistration|), since the latter results in a weird
// start-up time regression.
- scoped_nsobject<URLDropTargetHandler> dropHandler_;
+ base::scoped_nsobject<URLDropTargetHandler> dropHandler_;
- scoped_nsobject<NSCharacterSet> forbiddenCharacters_;
+ base::scoped_nsobject<NSCharacterSet> forbiddenCharacters_;
// Indicates if the field editor's interpretKeyEvents: method is being called.
// If it's YES, then we should postpone the call to the observer's

Powered by Google App Engine
This is Rietveld 408576698