Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_ | |
| 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 class AutocompleteEditController; | |
| 10 class CommandUpdater; | |
| 11 class LocationBarView; | |
| 12 class OmniboxView; | |
| 13 class Profile; | |
| 14 class ToolbarModel; | |
| 15 | |
| 16 namespace views { | |
|
oshima
2012/06/14 21:07:04
not sure if this should/can use views namespace, b
msw
2012/06/14 21:30:21
Removed, it does make more sense in the global nam
| |
| 17 | |
| 18 OmniboxView* CreateOmniboxView(AutocompleteEditController* controller, | |
| 19 ToolbarModel* toolbar_model, | |
| 20 Profile* profile, | |
| 21 CommandUpdater* command_updater, | |
| 22 bool popup_window_mode, | |
| 23 LocationBarView* location_bar); | |
| 24 | |
| 25 } // namespace views | |
| 26 | |
| 27 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEWS_H_ | |
| OLD | NEW |