| OLD | NEW |
| 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_ |
| OLD | NEW |