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

Unified Diff: chrome/browser/cocoa/autocomplete_text_field_editor.h

Issue 595017: [Mac] Use the ExtensionToolbarModel for ordering of the Browser Actions. Prep... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove redundant profile object. Created 10 years, 10 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/cocoa/autocomplete_text_field_editor.h
===================================================================
--- chrome/browser/cocoa/autocomplete_text_field_editor.h (revision 38554)
+++ chrome/browser/cocoa/autocomplete_text_field_editor.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -8,6 +8,7 @@
#import "chrome/browser/cocoa/url_drop_target.h"
class AutocompleteTextFieldObserver;
+class Profile;
// AutocompleteTextFieldEditor customized the AutocompletTextField
// field editor (helper text-view used in editing). It intercepts UI
@@ -23,7 +24,13 @@
// |-updateDragTypeRegistration|), since the latter results in a weird
// start-up time regression.
scoped_nsobject<URLDropTargetHandler> dropHandler_;
+
+ // The browser profile for the editor. Weak.
+ Profile* profile_;
}
+
+@property(nonatomic) Profile* profile;
+
@end
@interface AutocompleteTextFieldEditor(PrivateTestMethods)

Powered by Google App Engine
This is Rietveld 408576698