| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 void ToolbarSizeChanged(bool is_animating) override; | 303 void ToolbarSizeChanged(bool is_animating) override; |
| 304 void FocusAppMenu() override; | 304 void FocusAppMenu() override; |
| 305 void FocusBookmarksToolbar() override; | 305 void FocusBookmarksToolbar() override; |
| 306 void FocusInfobars() override; | 306 void FocusInfobars() override; |
| 307 void RotatePaneFocus(bool forwards) override; | 307 void RotatePaneFocus(bool forwards) override; |
| 308 void DestroyBrowser() override; | 308 void DestroyBrowser() override; |
| 309 bool IsBookmarkBarVisible() const override; | 309 bool IsBookmarkBarVisible() const override; |
| 310 bool IsBookmarkBarAnimating() const override; | 310 bool IsBookmarkBarAnimating() const override; |
| 311 bool IsTabStripEditable() const override; | 311 bool IsTabStripEditable() const override; |
| 312 bool IsToolbarVisible() const override; | 312 bool IsToolbarVisible() const override; |
| 313 gfx::Rect GetRootWindowResizerRect() const override; | |
| 314 void ShowUpdateChromeDialog() override; | 313 void ShowUpdateChromeDialog() override; |
| 315 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; | 314 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; |
| 316 void ShowBookmarkAppBubble( | 315 void ShowBookmarkAppBubble( |
| 317 const WebApplicationInfo& web_app_info, | 316 const WebApplicationInfo& web_app_info, |
| 318 const ShowBookmarkAppBubbleCallback& callback) override; | 317 const ShowBookmarkAppBubbleCallback& callback) override; |
| 319 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( | 318 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( |
| 320 content::WebContents* contents, | 319 content::WebContents* contents, |
| 321 autofill::SaveCardBubbleController* controller, | 320 autofill::SaveCardBubbleController* controller, |
| 322 bool is_user_gesture) override; | 321 bool is_user_gesture) override; |
| 323 void ShowTranslateBubble(content::WebContents* contents, | 322 void ShowTranslateBubble(content::WebContents* contents, |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 // The class that registers for keyboard shortcuts for extension commands. | 702 // The class that registers for keyboard shortcuts for extension commands. |
| 704 std::unique_ptr<ExtensionKeybindingRegistryViews> | 703 std::unique_ptr<ExtensionKeybindingRegistryViews> |
| 705 extension_keybinding_registry_; | 704 extension_keybinding_registry_; |
| 706 | 705 |
| 707 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 706 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 708 | 707 |
| 709 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 708 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 710 }; | 709 }; |
| 711 | 710 |
| 712 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 711 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |