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

Side by Side Diff: chrome/browser/ui/views/default_search_view.h

Issue 6296012: Update references part 2: files in chrome/browser/ui/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_DEFAULT_SEARCH_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_DEFAULT_SEARCH_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_DEFAULT_SEARCH_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_DEFAULT_SEARCH_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
11 #include "base/string16.h" 11 #include "base/string16.h"
12 #include "chrome/browser/tab_contents/constrained_window.h" 12 #include "chrome/browser/tab_contents/constrained_window.h"
13 #include "views/window/dialog_delegate.h" 13 #include "views/window/dialog_delegate.h"
14 14
15 #if defined(TOOLKIT_USES_GTK) 15 #if defined(TOOLKIT_USES_GTK)
16 #include "chrome/browser/gtk/constrained_window_gtk.h" 16 #include "chrome/browser/ui/gtk/constrained_window_gtk.h"
17 #endif 17 #endif
18 18
19 class PrefService; 19 class PrefService;
20 class TabContents; 20 class TabContents;
21 class TemplateURL; 21 class TemplateURL;
22 class TemplateURLModel; 22 class TemplateURLModel;
23 23
24 namespace gfx { 24 namespace gfx {
25 class Canvas; 25 class Canvas;
26 } 26 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 // The proposed new default search engine. 82 // The proposed new default search engine.
83 scoped_ptr<TemplateURL> proposed_turl_; 83 scoped_ptr<TemplateURL> proposed_turl_;
84 84
85 TemplateURLModel* template_url_model_; 85 TemplateURLModel* template_url_model_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(DefaultSearchView); 87 DISALLOW_COPY_AND_ASSIGN(DefaultSearchView);
88 }; 88 };
89 89
90 #endif // CHROME_BROWSER_UI_VIEWS_DEFAULT_SEARCH_VIEW_H_ 90 #endif // CHROME_BROWSER_UI_VIEWS_DEFAULT_SEARCH_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698