| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 void FocusAppMenu() override; | 300 void FocusAppMenu() override; |
| 301 void FocusBookmarksToolbar() override; | 301 void FocusBookmarksToolbar() override; |
| 302 void FocusInfobars() override; | 302 void FocusInfobars() override; |
| 303 void RotatePaneFocus(bool forwards) override; | 303 void RotatePaneFocus(bool forwards) override; |
| 304 void DestroyBrowser() override; | 304 void DestroyBrowser() override; |
| 305 bool IsBookmarkBarVisible() const override; | 305 bool IsBookmarkBarVisible() const override; |
| 306 bool IsBookmarkBarAnimating() const override; | 306 bool IsBookmarkBarAnimating() const override; |
| 307 bool IsTabStripEditable() const override; | 307 bool IsTabStripEditable() const override; |
| 308 bool IsToolbarVisible() const override; | 308 bool IsToolbarVisible() const override; |
| 309 gfx::Rect GetRootWindowResizerRect() const override; | 309 gfx::Rect GetRootWindowResizerRect() const override; |
| 310 void ConfirmAddSearchProvider(TemplateURL* template_url, | |
| 311 Profile* profile) override; | |
| 312 void ShowUpdateChromeDialog() override; | 310 void ShowUpdateChromeDialog() override; |
| 313 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; | 311 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; |
| 314 void ShowBookmarkAppBubble( | 312 void ShowBookmarkAppBubble( |
| 315 const WebApplicationInfo& web_app_info, | 313 const WebApplicationInfo& web_app_info, |
| 316 const ShowBookmarkAppBubbleCallback& callback) override; | 314 const ShowBookmarkAppBubbleCallback& callback) override; |
| 317 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( | 315 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( |
| 318 content::WebContents* contents, | 316 content::WebContents* contents, |
| 319 autofill::SaveCardBubbleController* controller, | 317 autofill::SaveCardBubbleController* controller, |
| 320 bool is_user_gesture) override; | 318 bool is_user_gesture) override; |
| 321 void ShowTranslateBubble(content::WebContents* contents, | 319 void ShowTranslateBubble(content::WebContents* contents, |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 // The class that registers for keyboard shortcuts for extension commands. | 694 // The class that registers for keyboard shortcuts for extension commands. |
| 697 std::unique_ptr<ExtensionKeybindingRegistryViews> | 695 std::unique_ptr<ExtensionKeybindingRegistryViews> |
| 698 extension_keybinding_registry_; | 696 extension_keybinding_registry_; |
| 699 | 697 |
| 700 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 698 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 701 | 699 |
| 702 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 700 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 703 }; | 701 }; |
| 704 | 702 |
| 705 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 703 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |