| 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" |
| 11 #include "chrome/browser/signin/chrome_signin_helper.h" | 11 #include "chrome/browser/signin/chrome_signin_helper.h" |
| 12 #include "chrome/browser/ui/browser_window.h" | 12 #include "chrome/browser/ui/browser_window.h" |
| 13 #include "chrome/browser/ui/tabs/tab_utils.h" | 13 #include "chrome/browser/ui/tabs/tab_utils.h" |
| 14 #include "chrome/common/features.h" | 14 #include "chrome/common/features.h" |
| 15 #include "components/bookmarks/browser/bookmark_model.h" | 15 #include "components/bookmarks/browser/bookmark_model.h" |
| 16 #include "components/security_state/security_state_model.h" | 16 #include "components/security_state/core/security_state_model.h" |
| 17 #include "ui/base/ui_base_types.h" | 17 #include "ui/base/ui_base_types.h" |
| 18 | 18 |
| 19 class Browser; | 19 class Browser; |
| 20 @class BrowserWindowController; | 20 @class BrowserWindowController; |
| 21 @class FindBarCocoaController; | 21 @class FindBarCocoaController; |
| 22 @class NSEvent; | 22 @class NSEvent; |
| 23 @class NSMenu; | 23 @class NSMenu; |
| 24 @class NSWindow; | 24 @class NSWindow; |
| 25 | 25 |
| 26 namespace extensions { | 26 namespace extensions { |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 ui::WindowShowState initial_show_state_; | 190 ui::WindowShowState initial_show_state_; |
| 191 NSInteger attention_request_id_; // identifier from requestUserAttention | 191 NSInteger attention_request_id_; // identifier from requestUserAttention |
| 192 | 192 |
| 193 // Preserves window alert state to show appropriate icon in the window title | 193 // Preserves window alert state to show appropriate icon in the window title |
| 194 // which can be audio playing, muting or none (determined by alert state of | 194 // which can be audio playing, muting or none (determined by alert state of |
| 195 // tabs. | 195 // tabs. |
| 196 TabAlertState alert_state_; | 196 TabAlertState alert_state_; |
| 197 }; | 197 }; |
| 198 | 198 |
| 199 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 199 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
| OLD | NEW |