| 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 signin_metrics::AccessPoint access_point) override; | 358 signin_metrics::AccessPoint access_point) override; |
| 359 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; | 359 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; |
| 360 void ExecuteExtensionCommand(const extensions::Extension* extension, | 360 void ExecuteExtensionCommand(const extensions::Extension* extension, |
| 361 const extensions::Command& command) override; | 361 const extensions::Command& command) override; |
| 362 ExclusiveAccessContext* GetExclusiveAccessContext() override; | 362 ExclusiveAccessContext* GetExclusiveAccessContext() override; |
| 363 void ShowImeWarningBubble( | 363 void ShowImeWarningBubble( |
| 364 const extensions::Extension* extension, | 364 const extensions::Extension* extension, |
| 365 const base::Callback<void(ImeWarningBubblePermissionStatus status)>& | 365 const base::Callback<void(ImeWarningBubblePermissionStatus status)>& |
| 366 callback) override; | 366 callback) override; |
| 367 std::string GetWorkspace() const override; | 367 std::string GetWorkspace() const override; |
| 368 bool IsVisibleOnAllWorkspaces() const override; |
| 368 | 369 |
| 369 BookmarkBarView* GetBookmarkBarView() const; | 370 BookmarkBarView* GetBookmarkBarView() const; |
| 370 LocationBarView* GetLocationBarView() const; | 371 LocationBarView* GetLocationBarView() const; |
| 371 views::View* GetTabContentsContainerView() const; | 372 views::View* GetTabContentsContainerView() const; |
| 372 ToolbarView* GetToolbarView() const; | 373 ToolbarView* GetToolbarView() const; |
| 373 | 374 |
| 374 // Overridden from TabStripModelObserver: | 375 // Overridden from TabStripModelObserver: |
| 375 void TabInsertedAt(content::WebContents* contents, | 376 void TabInsertedAt(content::WebContents* contents, |
| 376 int index, | 377 int index, |
| 377 bool foreground) override; | 378 bool foreground) override; |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 // The class that registers for keyboard shortcuts for extension commands. | 699 // The class that registers for keyboard shortcuts for extension commands. |
| 699 std::unique_ptr<ExtensionKeybindingRegistryViews> | 700 std::unique_ptr<ExtensionKeybindingRegistryViews> |
| 700 extension_keybinding_registry_; | 701 extension_keybinding_registry_; |
| 701 | 702 |
| 702 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 703 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 703 | 704 |
| 704 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 705 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 705 }; | 706 }; |
| 706 | 707 |
| 707 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 708 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |