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
3 // found in the LICENSE file.
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
7 // components like the browser command system can talk to the platform
8 // specific implementations of the location bar control. It also allows the
9 // location bar to be mocked for testing.
11 #ifndef CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_
12 #define CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_
16 #include "base/strings/string16.h"
17 #include "content/public/common/page_transition_types.h"
18 #include "ui/base/window_open_disposition.h"
20 class ExtensionAction
;
21 class LocationBarTesting
;
30 // Shows the first run bubble anchored to the location bar.
31 virtual void ShowFirstRunBubble() = 0;
33 // Returns the string of text entered in the location bar.
34 virtual string16
GetInputString() const = 0;
36 // Returns the WindowOpenDisposition that should be used to determine where
37 // to open a URL entered in the location bar.
38 virtual WindowOpenDisposition
GetWindowOpenDisposition() const = 0;
40 // Returns the PageTransition that should be recorded in history when the URL
41 // entered in the location bar is loaded.
42 virtual content::PageTransition
GetPageTransition() const = 0;
44 // Accepts the current string of text entered in the location bar.
45 virtual void AcceptInput() = 0;
47 // Focuses the location bar. Optionally also selects its contents.
48 virtual void FocusLocation(bool select_all
) = 0;
50 // Clears the location bar, inserts an annoying little "?" turd and sets
52 virtual void FocusSearch() = 0;
54 // Updates the state of the images showing the content settings status.
55 virtual void UpdateContentSettingsIcons() = 0;
57 // Updates the state of the page actions.
58 virtual void UpdatePageActions() = 0;
60 // Called when the page-action data needs to be refreshed, e.g. when an
61 // extension is unloaded or crashes.
62 virtual void InvalidatePageActions() = 0;
64 // Updates the state of the button to open a PDF in Adobe Reader.
65 virtual void UpdateOpenPDFInReaderPrompt() = 0;
67 // Updates the generated credit card view. This view serves as an anchor for
68 // the generated credit card bubble, which can show on successful generation
69 // of a new credit card number.
70 virtual void UpdateGeneratedCreditCardView() = 0;
72 // Saves the state of the location bar to the specified WebContents, so that
73 // it can be restored later. (Done when switching tabs).
74 virtual void SaveStateToContents(content::WebContents
* contents
) = 0;
76 // Reverts the location bar. The bar's permanent text will be shown.
77 virtual void Revert() = 0;
79 // Returns a pointer to the text entry view.
80 virtual const OmniboxView
* GetLocationEntry() const = 0;
81 virtual OmniboxView
* GetLocationEntry() = 0;
83 // Returns a pointer to the testing interface.
84 virtual LocationBarTesting
* GetLocationBarForTesting() = 0;
87 virtual ~LocationBar() {}
90 class LocationBarTesting
{
92 // Returns the total number of page actions in the Omnibox.
93 virtual int PageActionCount() = 0;
95 // Returns the number of visible page actions in the Omnibox.
96 virtual int PageActionVisibleCount() = 0;
98 // Returns the ExtensionAction at |index|.
99 virtual ExtensionAction
* GetPageAction(size_t index
) = 0;
101 // Returns the visible ExtensionAction at |index|.
102 virtual ExtensionAction
* GetVisiblePageAction(size_t index
) = 0;
104 // Simulates a left mouse pressed on the visible page action at |index|.
105 virtual void TestPageActionPressed(size_t index
) = 0;
107 // Returns whether or not the bookmark star decoration is visible.
108 virtual bool GetBookmarkStarVisibility() = 0;
111 virtual ~LocationBarTesting() {}
114 #endif // CHROME_BROWSER_UI_OMNIBOX_LOCATION_BAR_H_