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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 void EnterFullscreen(const GURL& url, | 284 void EnterFullscreen(const GURL& url, |
285 ExclusiveAccessBubbleType bubble_type) override; | 285 ExclusiveAccessBubbleType bubble_type) override; |
286 void ExitFullscreen() override; | 286 void ExitFullscreen() override; |
287 void UpdateExclusiveAccessExitBubbleContent( | 287 void UpdateExclusiveAccessExitBubbleContent( |
288 const GURL& url, | 288 const GURL& url, |
289 ExclusiveAccessBubbleType bubble_type) override; | 289 ExclusiveAccessBubbleType bubble_type) override; |
290 void OnExclusiveAccessUserInput() override; | 290 void OnExclusiveAccessUserInput() override; |
291 bool ShouldHideUIForFullscreen() const override; | 291 bool ShouldHideUIForFullscreen() const override; |
292 bool IsFullscreen() const override; | 292 bool IsFullscreen() const override; |
293 bool IsFullscreenBubbleVisible() const override; | 293 bool IsFullscreenBubbleVisible() const override; |
294 void MaybeShowNewBackShortcutBubble(bool forward) override; | 294 void MaybeShowNewBackShortcutBubble(int command_id) override; |
295 void HideNewBackShortcutBubble() override; | 295 void HideNewBackShortcutBubble() override; |
296 LocationBar* GetLocationBar() const override; | 296 LocationBar* GetLocationBar() const override; |
297 void SetFocusToLocationBar(bool select_all) override; | 297 void SetFocusToLocationBar(bool select_all) override; |
298 void UpdateReloadStopState(bool is_loading, bool force) override; | 298 void UpdateReloadStopState(bool is_loading, bool force) override; |
299 void UpdateToolbar(content::WebContents* contents) override; | 299 void UpdateToolbar(content::WebContents* contents) override; |
300 void ResetToolbarTabState(content::WebContents* contents) override; | 300 void ResetToolbarTabState(content::WebContents* contents) override; |
301 void FocusToolbar() override; | 301 void FocusToolbar() override; |
302 ToolbarActionsBar* GetToolbarActionsBar() override; | 302 ToolbarActionsBar* GetToolbarActionsBar() override; |
303 void ToolbarSizeChanged(bool is_animating) override; | 303 void ToolbarSizeChanged(bool is_animating) override; |
304 void FocusAppMenu() override; | 304 void FocusAppMenu() override; |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 // The class that registers for keyboard shortcuts for extension commands. | 703 // The class that registers for keyboard shortcuts for extension commands. |
704 std::unique_ptr<ExtensionKeybindingRegistryViews> | 704 std::unique_ptr<ExtensionKeybindingRegistryViews> |
705 extension_keybinding_registry_; | 705 extension_keybinding_registry_; |
706 | 706 |
707 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 707 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
708 | 708 |
709 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 709 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
710 }; | 710 }; |
711 | 711 |
712 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 712 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |