| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_CONSTRAINED_WINDOW_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_MAC_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_MAC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 10 | 10 |
| 11 #include "chrome/browser/tab_contents/constrained_window.h" | 11 #include "content/browser/tab_contents/constrained_window.h" |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/scoped_nsobject.h" | 15 #include "base/scoped_nsobject.h" |
| 16 | 16 |
| 17 @class BrowserWindowController; | 17 @class BrowserWindowController; |
| 18 @class GTMWindowSheetController; | 18 @class GTMWindowSheetController; |
| 19 @class NSView; | 19 @class NSView; |
| 20 @class NSWindow; | 20 @class NSWindow; |
| 21 class TabContents; | 21 class TabContents; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 BrowserWindowController* controller_; | 140 BrowserWindowController* controller_; |
| 141 | 141 |
| 142 // Stores if |ShowConstrainedWindow()| was called. | 142 // Stores if |ShowConstrainedWindow()| was called. |
| 143 bool should_be_visible_; | 143 bool should_be_visible_; |
| 144 | 144 |
| 145 DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowMac); | 145 DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowMac); |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 #endif // CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_MAC_H_ | 148 #endif // CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_MAC_H_ |
| 149 | 149 |
| OLD | NEW |