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 // This file defines the interface class OmniboxView. Each toolkit will | 5 // This file defines the interface class OmniboxView. Each toolkit will |
6 // implement the edit view differently, so that code is inherently platform | 6 // implement the edit view differently, so that code is inherently platform |
7 // specific. However, the OmniboxEditModel needs to do some communication with | 7 // specific. However, the OmniboxEditModel needs to do some communication with |
8 // the view. Since the model is shared between platforms, we need to define an | 8 // the view. Since the model is shared between platforms, we need to define an |
9 // interface that all view implementations will share. | 9 // interface that all view implementations will share. |
10 | 10 |
11 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_VIEW_H_ | 11 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_VIEW_H_ |
12 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_VIEW_H_ | 12 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_VIEW_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "base/strings/string_util.h" | 17 #include "base/strings/string_util.h" |
18 #include "base/strings/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "chrome/browser/ui/omnibox/omnibox_edit_model.h" | 19 #include "chrome/browser/ui/omnibox/omnibox_edit_model.h" |
20 #include "components/autocomplete/autocomplete_match.h" | 20 #include "components/omnibox/autocomplete_match.h" |
21 #include "content/public/common/url_constants.h" | 21 #include "content/public/common/url_constants.h" |
22 #include "ui/base/window_open_disposition.h" | 22 #include "ui/base/window_open_disposition.h" |
23 #include "ui/gfx/native_widget_types.h" | 23 #include "ui/gfx/native_widget_types.h" |
24 | 24 |
25 class CommandUpdater; | 25 class CommandUpdater; |
26 class GURL; | 26 class GURL; |
27 class OmniboxEditController; | 27 class OmniboxEditController; |
28 class OmniboxViewMacTest; | 28 class OmniboxViewMacTest; |
29 class Profile; | 29 class Profile; |
30 class ToolbarModel; | 30 class ToolbarModel; |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 // |model_| can be NULL in tests. | 288 // |model_| can be NULL in tests. |
289 scoped_ptr<OmniboxEditModel> model_; | 289 scoped_ptr<OmniboxEditModel> model_; |
290 OmniboxEditController* controller_; | 290 OmniboxEditController* controller_; |
291 | 291 |
292 // The object that handles additional command functionality exposed on the | 292 // The object that handles additional command functionality exposed on the |
293 // edit, such as invoking the keyword editor. | 293 // edit, such as invoking the keyword editor. |
294 CommandUpdater* command_updater_; | 294 CommandUpdater* command_updater_; |
295 }; | 295 }; |
296 | 296 |
297 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_VIEW_H_ | 297 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_VIEW_H_ |
OLD | NEW |