| OLD | NEW |
| 1 // Copyright (c) 2011 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 // The LocationBar class is a virtual interface, defining access to the | 5 // The LocationBar class is a virtual interface, defining access to the |
| 6 // window's location bar component. This class exists so that cross-platform | 6 // window's location bar component. This class exists so that cross-platform |
| 7 // components like the browser command system can talk to the platform | 7 // components like the browser command system can talk to the platform |
| 8 // specific implementations of the location bar control. It also allows the | 8 // specific implementations of the location bar control. It also allows the |
| 9 // location bar to be mocked for testing. | 9 // location bar to be mocked for testing. |
| 10 | 10 |
| 11 #ifndef CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ | 11 #ifndef CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ |
| 12 #define CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ | 12 #define CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ |
| 13 #pragma once | 13 #pragma once |
| 14 | 14 |
| 15 #include <string> | 15 #include <string> |
| 16 | 16 |
| 17 #include "base/string16.h" | 17 #include "base/string16.h" |
| 18 #include "chrome/browser/first_run/first_run.h" | 18 #include "chrome/browser/first_run/first_run.h" |
| 19 #include "chrome/browser/instant/instant_delegate.h" | 19 #include "chrome/browser/instant/instant_delegate.h" |
| 20 #include "content/public/common/page_transition_types.h" | 20 #include "content/public/common/page_transition_types.h" |
| 21 #include "webkit/glue/window_open_disposition.h" | 21 #include "webkit/glue/window_open_disposition.h" |
| 22 | 22 |
| 23 class ExtensionAction; | 23 class ExtensionAction; |
| 24 class InstantController; | |
| 25 class LocationBarTesting; | 24 class LocationBarTesting; |
| 26 class OmniboxView; | 25 class OmniboxView; |
| 27 class TabContents; | 26 class TabContents; |
| 28 class TabContentsWrapper; | |
| 29 | 27 |
| 30 class LocationBar { | 28 class LocationBar { |
| 31 public: | 29 public: |
| 32 // Shows the first run information bubble anchored to the location bar. | 30 // Shows the first run information bubble anchored to the location bar. |
| 33 virtual void ShowFirstRunBubble(FirstRun::BubbleType bubble_type) = 0; | 31 virtual void ShowFirstRunBubble(FirstRun::BubbleType bubble_type) = 0; |
| 34 | 32 |
| 35 // Sets the suggested text to show in the omnibox. This is shown in addition | 33 // Sets the suggested text to show in the omnibox. This is shown in addition |
| 36 // to the current text of the omnibox. | 34 // to the current text of the omnibox. |
| 37 virtual void SetSuggestedText(const string16& text, | 35 virtual void SetSuggestedText(const string16& text, |
| 38 InstantCompleteBehavior behavior) = 0; | 36 InstantCompleteBehavior behavior) = 0; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 virtual ExtensionAction* GetVisiblePageAction(size_t index) = 0; | 99 virtual ExtensionAction* GetVisiblePageAction(size_t index) = 0; |
| 102 | 100 |
| 103 // Simulates a left mouse pressed on the visible page action at |index|. | 101 // Simulates a left mouse pressed on the visible page action at |index|. |
| 104 virtual void TestPageActionPressed(size_t index) = 0; | 102 virtual void TestPageActionPressed(size_t index) = 0; |
| 105 | 103 |
| 106 protected: | 104 protected: |
| 107 virtual ~LocationBarTesting() {} | 105 virtual ~LocationBarTesting() {} |
| 108 }; | 106 }; |
| 109 | 107 |
| 110 #endif // CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ | 108 #endif // CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ |
| OLD | NEW |