| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 19 matching lines...) Expand all Loading... |
| 30 // to open a URL entered in the location bar. | 30 // to open a URL entered in the location bar. |
| 31 virtual WindowOpenDisposition GetWindowOpenDisposition() const = 0; | 31 virtual WindowOpenDisposition GetWindowOpenDisposition() const = 0; |
| 32 | 32 |
| 33 // Returns the PageTransition that should be recorded in history when the URL | 33 // Returns the PageTransition that should be recorded in history when the URL |
| 34 // entered in the location bar is loaded. | 34 // entered in the location bar is loaded. |
| 35 virtual PageTransition::Type GetPageTransition() const = 0; | 35 virtual PageTransition::Type GetPageTransition() const = 0; |
| 36 | 36 |
| 37 // Accepts the current string of text entered in the location bar. | 37 // Accepts the current string of text entered in the location bar. |
| 38 virtual void AcceptInput() = 0; | 38 virtual void AcceptInput() = 0; |
| 39 | 39 |
| 40 // Accept the current input, overriding the disposition. |
| 41 virtual void AcceptInputWithDisposition(WindowOpenDisposition) = 0; |
| 42 |
| 40 // Focuses and selects the contents of the location bar. | 43 // Focuses and selects the contents of the location bar. |
| 41 virtual void FocusLocation() = 0; | 44 virtual void FocusLocation() = 0; |
| 42 | 45 |
| 43 // Clears the location bar, inserts an annoying little "?" turd and sets | 46 // Clears the location bar, inserts an annoying little "?" turd and sets |
| 44 // focus to it. | 47 // focus to it. |
| 45 virtual void FocusSearch() = 0; | 48 virtual void FocusSearch() = 0; |
| 46 | 49 |
| 47 // Update the state of the feed icon. | 50 // Update the state of the feed icon. |
| 48 virtual void UpdateFeedIcon() = 0; | 51 virtual void UpdateFeedIcon() = 0; |
| 49 | 52 |
| 50 // Saves the state of the location bar to the specified TabContents, so that | 53 // Saves the state of the location bar to the specified TabContents, so that |
| 51 // it can be restored later. (Done when switching tabs). | 54 // it can be restored later. (Done when switching tabs). |
| 52 virtual void SaveStateToContents(TabContents* contents) = 0; | 55 virtual void SaveStateToContents(TabContents* contents) = 0; |
| 53 }; | 56 }; |
| 54 | 57 |
| 55 #endif // CHROME_BROWSER_LOCATION_BAR_H_ | 58 #endif // CHROME_BROWSER_LOCATION_BAR_H_ |
| OLD | NEW |