| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 void UpdateDevTools() override; | 63 void UpdateDevTools() override; |
| 64 void UpdateLoadingAnimations(bool should_animate) override; | 64 void UpdateLoadingAnimations(bool should_animate) override; |
| 65 void SetStarredState(bool is_starred) override; | 65 void SetStarredState(bool is_starred) override; |
| 66 void SetTranslateIconToggled(bool is_lit) override; | 66 void SetTranslateIconToggled(bool is_lit) override; |
| 67 void OnActiveTabChanged(content::WebContents* old_contents, | 67 void OnActiveTabChanged(content::WebContents* old_contents, |
| 68 content::WebContents* new_contents, | 68 content::WebContents* new_contents, |
| 69 int index, | 69 int index, |
| 70 int reason) override; | 70 int reason) override; |
| 71 void ZoomChangedForActiveTab(bool can_show_bubble) override; | 71 void ZoomChangedForActiveTab(bool can_show_bubble) override; |
| 72 gfx::Rect GetRestoredBounds() const override; | 72 gfx::Rect GetRestoredBounds() const override; |
| 73 std::string GetWorkspace() const override; |
| 73 ui::WindowShowState GetRestoredState() const override; | 74 ui::WindowShowState GetRestoredState() const override; |
| 74 gfx::Rect GetBounds() const override; | 75 gfx::Rect GetBounds() const override; |
| 75 gfx::Size GetContentsSize() const override; | 76 gfx::Size GetContentsSize() const override; |
| 76 bool IsMaximized() const override; | 77 bool IsMaximized() const override; |
| 77 bool IsMinimized() const override; | 78 bool IsMinimized() const override; |
| 78 void Maximize() override; | 79 void Maximize() override; |
| 79 void Minimize() override; | 80 void Minimize() override; |
| 80 void Restore() override; | 81 void Restore() override; |
| 81 bool ShouldHideUIForFullscreen() const override; | 82 bool ShouldHideUIForFullscreen() const override; |
| 82 bool IsFullscreen() const override; | 83 bool IsFullscreen() const override; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ui::WindowShowState initial_show_state_; | 196 ui::WindowShowState initial_show_state_; |
| 196 NSInteger attention_request_id_; // identifier from requestUserAttention | 197 NSInteger attention_request_id_; // identifier from requestUserAttention |
| 197 | 198 |
| 198 // Preserves window alert state to show appropriate icon in the window title | 199 // Preserves window alert state to show appropriate icon in the window title |
| 199 // which can be audio playing, muting or none (determined by alert state of | 200 // which can be audio playing, muting or none (determined by alert state of |
| 200 // tabs. | 201 // tabs. |
| 201 TabAlertState alert_state_; | 202 TabAlertState alert_state_; |
| 202 }; | 203 }; |
| 203 | 204 |
| 204 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 205 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
| OLD | NEW |