| 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_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 void FocusInfobars() override; | 308 void FocusInfobars() override; |
| 309 void RotatePaneFocus(bool forwards) override; | 309 void RotatePaneFocus(bool forwards) override; |
| 310 void DestroyBrowser() override; | 310 void DestroyBrowser() override; |
| 311 bool IsBookmarkBarVisible() const override; | 311 bool IsBookmarkBarVisible() const override; |
| 312 bool IsBookmarkBarAnimating() const override; | 312 bool IsBookmarkBarAnimating() const override; |
| 313 bool IsTabStripEditable() const override; | 313 bool IsTabStripEditable() const override; |
| 314 bool IsToolbarVisible() const override; | 314 bool IsToolbarVisible() const override; |
| 315 bool IsToolbarShowing() const override; | 315 bool IsToolbarShowing() const override; |
| 316 void ShowUpdateChromeDialog() override; | 316 void ShowUpdateChromeDialog() override; |
| 317 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; | 317 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; |
| 318 void ShowBookmarkAppBubble( | |
| 319 const WebApplicationInfo& web_app_info, | |
| 320 const ShowBookmarkAppBubbleCallback& callback) override; | |
| 321 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( | 318 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( |
| 322 content::WebContents* contents, | 319 content::WebContents* contents, |
| 323 autofill::SaveCardBubbleController* controller, | 320 autofill::SaveCardBubbleController* controller, |
| 324 bool is_user_gesture) override; | 321 bool is_user_gesture) override; |
| 325 ShowTranslateBubbleResult ShowTranslateBubble( | 322 ShowTranslateBubbleResult ShowTranslateBubble( |
| 326 content::WebContents* contents, | 323 content::WebContents* contents, |
| 327 translate::TranslateStep step, | 324 translate::TranslateStep step, |
| 328 translate::TranslateErrors::Type error_type, | 325 translate::TranslateErrors::Type error_type, |
| 329 bool is_user_gesture) override; | 326 bool is_user_gesture) override; |
| 330 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) | 327 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 extension_keybinding_registry_; | 713 extension_keybinding_registry_; |
| 717 | 714 |
| 718 std::unique_ptr<BrowserWindowHistogramHelper> histogram_helper_; | 715 std::unique_ptr<BrowserWindowHistogramHelper> histogram_helper_; |
| 719 | 716 |
| 720 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 717 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 721 | 718 |
| 722 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 719 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 723 }; | 720 }; |
| 724 | 721 |
| 725 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 722 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |