Chromium Code Reviews| 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 // This file contains forward declarations for items in later SDKs than the | 5 // This file contains forward declarations for items in later SDKs than the |
| 6 // default one with which Chromium is built (currently 10.10). | 6 // default one with which Chromium is built (currently 10.10). |
| 7 // If you call any function from this header, be sure to check at runtime for | 7 // If you call any function from this header, be sure to check at runtime for |
| 8 // respondsToSelector: before calling these functions (else your code will crash | 8 // respondsToSelector: before calling these functions (else your code will crash |
| 9 // on older OS X versions that chrome still supports). | 9 // on older OS X versions that chrome still supports). |
| 10 | 10 |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 226 #endif // MAC_OS_X_VERSION_10_10 | 226 #endif // MAC_OS_X_VERSION_10_10 |
| 227 | 227 |
| 228 // ---------------------------------------------------------------------------- | 228 // ---------------------------------------------------------------------------- |
| 229 // The symbol for kCWSSIDDidChangeNotification is available in the | 229 // The symbol for kCWSSIDDidChangeNotification is available in the |
| 230 // CoreWLAN.framework for OSX versions 10.6 through 10.10. The symbol is not | 230 // CoreWLAN.framework for OSX versions 10.6 through 10.10. The symbol is not |
| 231 // declared in the OSX 10.9+ SDK, so when compiling against an OSX 10.9+ SDK, | 231 // declared in the OSX 10.9+ SDK, so when compiling against an OSX 10.9+ SDK, |
| 232 // declare the symbol. | 232 // declare the symbol. |
| 233 // ---------------------------------------------------------------------------- | 233 // ---------------------------------------------------------------------------- |
| 234 BASE_EXPORT extern "C" NSString* const kCWSSIDDidChangeNotification; | 234 BASE_EXPORT extern "C" NSString* const kCWSSIDDidChangeNotification; |
| 235 | 235 |
| 236 extern "C" { | |
| 237 // See http://openradar.appspot.com/9896491. This SPI has been tested on 10.5, | |
| 238 // 10.6, and 10.7. It allows accessibility clients to observe events posted on | |
| 239 // the |element| object. | |
| 240 void NSAccessibilityUnregisterUniqueIdForUIElement(id element); | |
|
tapted
2016/09/26 05:19:17
sdk_forward_declarations.h isn't really the right
Patti Lor
2016/09/28 00:29:14
See below comment, deleted this in both places.
| |
| 241 } | |
| 242 | |
| 236 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 243 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
| OLD | NEW |