Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_UI_LOCATION_BAR_LOCATION_BAR_H_ | 5 #ifndef CHROME_BROWSER_UI_LOCATION_BAR_LOCATION_BAR_H_ |
| 6 #define CHROME_BROWSER_UI_LOCATION_BAR_LOCATION_BAR_H_ | 6 #define CHROME_BROWSER_UI_LOCATION_BAR_LOCATION_BAR_H_ |
| 7 | 7 |
| 8 #include "ui/base/page_transition_types.h" | 8 #include "ui/base/page_transition_types.h" |
| 9 #include "ui/base/window_open_disposition.h" | 9 #include "ui/base/window_open_disposition.h" |
| 10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 54 | 54 |
| 55 // Updates the password icon and pops up a bubble from the icon if needed. | 55 // Updates the password icon and pops up a bubble from the icon if needed. |
| 56 virtual void UpdateManagePasswordsIconAndBubble() = 0; | 56 virtual void UpdateManagePasswordsIconAndBubble() = 0; |
| 57 | 57 |
| 58 // Updates the state of the page actions. | 58 // Updates the state of the page actions. |
| 59 virtual void UpdatePageActions() = 0; | 59 virtual void UpdatePageActions() = 0; |
| 60 | 60 |
| 61 // Updates the visibility of the bookmark star. | 61 // Updates the visibility of the bookmark star. |
| 62 virtual void UpdateBookmarkStarVisibility() = 0; | 62 virtual void UpdateBookmarkStarVisibility() = 0; |
| 63 | 63 |
| 64 // Updates the state of the location bar. Animate the transition based if | |
|
Peter Kasting
2015/04/01 20:27:42
Nit: Animate -> Animates; remove "based"
benwells
2015/04/02 00:36:54
Done.
| |
| 65 // |animate| is true. | |
| 66 virtual void UpdateLocationBarState(bool visible, bool animate) = 0; | |
|
Peter Kasting
2015/04/01 20:27:42
"location bar state" is a pretty vague phrasing wh
benwells
2015/04/02 00:36:54
Done.
| |
| 67 | |
| 64 // Shows the popup for the given |extension| and, if |grant_active_tab| is | 68 // Shows the popup for the given |extension| and, if |grant_active_tab| is |
| 65 // true, grants the extension active tab permissions. | 69 // true, grants the extension active tab permissions. |
| 66 // Returns true if a popup was shown. | 70 // Returns true if a popup was shown. |
| 67 virtual bool ShowPageActionPopup(const extensions::Extension* extension, | 71 virtual bool ShowPageActionPopup(const extensions::Extension* extension, |
| 68 bool grant_active_tab) = 0; | 72 bool grant_active_tab) = 0; |
| 69 | 73 |
| 70 // Updates the state of the button to open a PDF in Adobe Reader. | 74 // Updates the state of the button to open a PDF in Adobe Reader. |
| 71 virtual void UpdateOpenPDFInReaderPrompt() = 0; | 75 virtual void UpdateOpenPDFInReaderPrompt() = 0; |
| 72 | 76 |
| 73 // Updates the generated credit card view. This view serves as an anchor for | 77 // Updates the generated credit card view. This view serves as an anchor for |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 120 virtual void TestPageActionPressed(size_t index) = 0; | 124 virtual void TestPageActionPressed(size_t index) = 0; |
| 121 | 125 |
| 122 // Returns whether or not the bookmark star decoration is visible. | 126 // Returns whether or not the bookmark star decoration is visible. |
| 123 virtual bool GetBookmarkStarVisibility() = 0; | 127 virtual bool GetBookmarkStarVisibility() = 0; |
| 124 | 128 |
| 125 protected: | 129 protected: |
| 126 virtual ~LocationBarTesting() {} | 130 virtual ~LocationBarTesting() {} |
| 127 }; | 131 }; |
| 128 | 132 |
| 129 #endif // CHROME_BROWSER_UI_LOCATION_BAR_LOCATION_BAR_H_ | 133 #endif // CHROME_BROWSER_UI_LOCATION_BAR_LOCATION_BAR_H_ |
| OLD | NEW |