| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 public: | 31 public: |
| 32 // Shows the first run information bubble anchored to the location bar. | 32 // Shows the first run information bubble anchored to the location bar. |
| 33 virtual void ShowFirstRunBubble(FirstRun::BubbleType bubble_type) = 0; | 33 virtual void ShowFirstRunBubble(FirstRun::BubbleType bubble_type) = 0; |
| 34 | 34 |
| 35 // Sets the suggested text to show in the omnibox. This is shown in addition | 35 // Sets the suggested text to show in the omnibox. This is shown in addition |
| 36 // to the current text of the omnibox. | 36 // to the current text of the omnibox. |
| 37 virtual void SetSuggestedText(const string16& text, | 37 virtual void SetSuggestedText(const string16& text, |
| 38 InstantCompleteBehavior behavior) = 0; | 38 InstantCompleteBehavior behavior) = 0; |
| 39 | 39 |
| 40 // Returns the string of text entered in the location bar. | 40 // Returns the string of text entered in the location bar. |
| 41 virtual std::wstring GetInputString() const = 0; | 41 virtual string16 GetInputString() const = 0; |
| 42 | 42 |
| 43 // Returns the WindowOpenDisposition that should be used to determine where | 43 // Returns the WindowOpenDisposition that should be used to determine where |
| 44 // to open a URL entered in the location bar. | 44 // to open a URL entered in the location bar. |
| 45 virtual WindowOpenDisposition GetWindowOpenDisposition() const = 0; | 45 virtual WindowOpenDisposition GetWindowOpenDisposition() const = 0; |
| 46 | 46 |
| 47 // Returns the PageTransition that should be recorded in history when the URL | 47 // Returns the PageTransition that should be recorded in history when the URL |
| 48 // entered in the location bar is loaded. | 48 // entered in the location bar is loaded. |
| 49 virtual PageTransition::Type GetPageTransition() const = 0; | 49 virtual PageTransition::Type GetPageTransition() const = 0; |
| 50 | 50 |
| 51 // Accepts the current string of text entered in the location bar. | 51 // Accepts the current string of text entered in the location bar. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 virtual ExtensionAction* GetVisiblePageAction(size_t index) = 0; | 101 virtual ExtensionAction* GetVisiblePageAction(size_t index) = 0; |
| 102 | 102 |
| 103 // Simulates a left mouse pressed on the visible page action at |index|. | 103 // Simulates a left mouse pressed on the visible page action at |index|. |
| 104 virtual void TestPageActionPressed(size_t index) = 0; | 104 virtual void TestPageActionPressed(size_t index) = 0; |
| 105 | 105 |
| 106 protected: | 106 protected: |
| 107 virtual ~LocationBarTesting() {} | 107 virtual ~LocationBarTesting() {} |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 #endif // CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ | 110 #endif // CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_ |
| OLD | NEW |