| 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_APP_CONTROLLER_MAC_H_ | 5 #ifndef CHROME_BROWSER_APP_CONTROLLER_MAC_H_ |
| 6 #define CHROME_BROWSER_APP_CONTROLLER_MAC_H_ | 6 #define CHROME_BROWSER_APP_CONTROLLER_MAC_H_ |
| 7 | 7 |
| 8 #if defined(__OBJC__) | 8 #if defined(__OBJC__) |
| 9 | 9 |
| 10 #import <Cocoa/Cocoa.h> | 10 #import <Cocoa/Cocoa.h> |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 186 |
| 187 namespace app_controller_mac { | 187 namespace app_controller_mac { |
| 188 | 188 |
| 189 // True if we are currently handling an IDC_NEW_{TAB,WINDOW} command. Used in | 189 // True if we are currently handling an IDC_NEW_{TAB,WINDOW} command. Used in |
| 190 // SessionService::Observe() to get around windows/linux and mac having | 190 // SessionService::Observe() to get around windows/linux and mac having |
| 191 // different models of application lifetime. | 191 // different models of application lifetime. |
| 192 bool IsOpeningNewWindow(); | 192 bool IsOpeningNewWindow(); |
| 193 | 193 |
| 194 } // namespace app_controller_mac | 194 } // namespace app_controller_mac |
| 195 | 195 |
| 196 #endif | 196 #endif // CHROME_BROWSER_APP_CONTROLLER_MAC_H_ |
| OLD | NEW |