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

Side by Side Diff: chrome/browser/ui/views/omnibox/omnibox_views.h

Issue 10580039: Adds ability to render omnibox as a view above the page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_OMNIBOX_OMNIBOX_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_
7 #pragma once 7 #pragma once
8 8
9 class AutocompleteEditController; 9 class AutocompleteEditController;
10 class CommandUpdater; 10 class CommandUpdater;
11 class LocationBarView; 11 class LocationBarView;
12 class OmniboxView; 12 class OmniboxView;
13 class Profile; 13 class Profile;
14 class ToolbarModel; 14 class ToolbarModel;
15 15
16 namespace views {
17 class View;
18 }
19
16 OmniboxView* CreateOmniboxView(AutocompleteEditController* controller, 20 OmniboxView* CreateOmniboxView(AutocompleteEditController* controller,
17 ToolbarModel* toolbar_model, 21 ToolbarModel* toolbar_model,
18 Profile* profile, 22 Profile* profile,
19 CommandUpdater* command_updater, 23 CommandUpdater* command_updater,
20 bool popup_window_mode, 24 bool popup_window_mode,
21 LocationBarView* location_bar); 25 LocationBarView* location_bar,
26 views::View* popup_parent_view);
22 27
23 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_ 28 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698