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_COCOA_BROWSER_WINDOW_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
7 | 7 |
8 #include "base/mac/scoped_nsobject.h" | 8 #include "base/mac/scoped_nsobject.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "chrome/browser/extensions/extension_keybinding_registry.h" | 10 #include "chrome/browser/extensions/extension_keybinding_registry.h" |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 std::string GetWorkspace() const override; | 74 std::string GetWorkspace() const override; |
75 bool IsVisibleOnAllWorkspaces() const override; | 75 bool IsVisibleOnAllWorkspaces() const override; |
76 ui::WindowShowState GetRestoredState() const override; | 76 ui::WindowShowState GetRestoredState() const override; |
77 gfx::Rect GetBounds() const override; | 77 gfx::Rect GetBounds() const override; |
78 gfx::Size GetContentsSize() const override; | 78 gfx::Size GetContentsSize() const override; |
79 bool IsMaximized() const override; | 79 bool IsMaximized() const override; |
80 bool IsMinimized() const override; | 80 bool IsMinimized() const override; |
81 void Maximize() override; | 81 void Maximize() override; |
82 void Minimize() override; | 82 void Minimize() override; |
83 void Restore() override; | 83 void Restore() override; |
| 84 void SetFullscreen(bool fullscreen) override; |
84 bool ShouldHideUIForFullscreen() const override; | 85 bool ShouldHideUIForFullscreen() const override; |
85 bool IsFullscreen() const override; | 86 bool IsFullscreen() const override; |
86 bool IsFullscreenBubbleVisible() const override; | 87 bool IsFullscreenBubbleVisible() const override; |
87 void MaybeShowNewBackShortcutBubble(bool forward) override; | 88 void MaybeShowNewBackShortcutBubble(bool forward) override; |
88 void HideNewBackShortcutBubble() override; | 89 void HideNewBackShortcutBubble() override; |
89 LocationBar* GetLocationBar() const override; | 90 LocationBar* GetLocationBar() const override; |
90 void SetFocusToLocationBar(bool select_all) override; | 91 void SetFocusToLocationBar(bool select_all) override; |
91 void UpdateReloadStopState(bool is_loading, bool force) override; | 92 void UpdateReloadStopState(bool is_loading, bool force) override; |
92 void UpdateToolbar(content::WebContents* contents) override; | 93 void UpdateToolbar(content::WebContents* contents) override; |
93 void ResetToolbarTabState(content::WebContents* contents) override; | 94 void ResetToolbarTabState(content::WebContents* contents) override; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 ui::WindowShowState initial_show_state_; | 195 ui::WindowShowState initial_show_state_; |
195 NSInteger attention_request_id_; // identifier from requestUserAttention | 196 NSInteger attention_request_id_; // identifier from requestUserAttention |
196 | 197 |
197 // Preserves window alert state to show appropriate icon in the window title | 198 // Preserves window alert state to show appropriate icon in the window title |
198 // which can be audio playing, muting or none (determined by alert state of | 199 // which can be audio playing, muting or none (determined by alert state of |
199 // tabs. | 200 // tabs. |
200 TabAlertState alert_state_; | 201 TabAlertState alert_state_; |
201 }; | 202 }; |
202 | 203 |
203 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 204 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
OLD | NEW |