OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 virtual void ShowFirstRunBubble() OVERRIDE; | 342 virtual void ShowFirstRunBubble() OVERRIDE; |
343 virtual GURL GetDestinationURL() const OVERRIDE; | 343 virtual GURL GetDestinationURL() const OVERRIDE; |
344 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE; | 344 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE; |
345 virtual content::PageTransition GetPageTransition() const OVERRIDE; | 345 virtual content::PageTransition GetPageTransition() const OVERRIDE; |
346 virtual void AcceptInput() OVERRIDE; | 346 virtual void AcceptInput() OVERRIDE; |
347 virtual void FocusSearch() OVERRIDE; | 347 virtual void FocusSearch() OVERRIDE; |
348 virtual void UpdateContentSettingsIcons() OVERRIDE; | 348 virtual void UpdateContentSettingsIcons() OVERRIDE; |
349 virtual void UpdateManagePasswordsIconAndBubble() OVERRIDE; | 349 virtual void UpdateManagePasswordsIconAndBubble() OVERRIDE; |
350 virtual void UpdatePageActions() OVERRIDE; | 350 virtual void UpdatePageActions() OVERRIDE; |
351 virtual void InvalidatePageActions() OVERRIDE; | 351 virtual void InvalidatePageActions() OVERRIDE; |
| 352 virtual void UpdateBookmarkStarVisibility() OVERRIDE; |
352 virtual bool ShowPageActionPopup(const extensions::Extension* extension, | 353 virtual bool ShowPageActionPopup(const extensions::Extension* extension, |
353 bool grant_active_tab) OVERRIDE; | 354 bool grant_active_tab) OVERRIDE; |
354 virtual void UpdateOpenPDFInReaderPrompt() OVERRIDE; | 355 virtual void UpdateOpenPDFInReaderPrompt() OVERRIDE; |
355 virtual void UpdateGeneratedCreditCardView() OVERRIDE; | 356 virtual void UpdateGeneratedCreditCardView() OVERRIDE; |
356 virtual void SaveStateToContents(content::WebContents* contents) OVERRIDE; | 357 virtual void SaveStateToContents(content::WebContents* contents) OVERRIDE; |
357 virtual const OmniboxView* GetOmniboxView() const OVERRIDE; | 358 virtual const OmniboxView* GetOmniboxView() const OVERRIDE; |
358 virtual LocationBarTesting* GetLocationBarForTesting() OVERRIDE; | 359 virtual LocationBarTesting* GetLocationBarForTesting() OVERRIDE; |
359 | 360 |
360 // LocationBarTesting: | 361 // LocationBarTesting: |
361 virtual int PageActionCount() OVERRIDE; | 362 virtual int PageActionCount() OVERRIDE; |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 // The width is always positive. The ending width is the width of the entire | 545 // The width is always positive. The ending width is the width of the entire |
545 // omnibox URL. As the show animation runs, the current width gradually moves | 546 // omnibox URL. As the show animation runs, the current width gradually moves |
546 // from the width of the hostname to the ending value. | 547 // from the width of the hostname to the ending value. |
547 int current_omnibox_width_; | 548 int current_omnibox_width_; |
548 int ending_omnibox_width_; | 549 int ending_omnibox_width_; |
549 | 550 |
550 DISALLOW_COPY_AND_ASSIGN(LocationBarView); | 551 DISALLOW_COPY_AND_ASSIGN(LocationBarView); |
551 }; | 552 }; |
552 | 553 |
553 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 554 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
OLD | NEW |