| 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 extern const char kChromeUIUberFrameURL[]; | 80 extern const char kChromeUIUberFrameURL[]; |
| 81 extern const char kChromeUIUserActionsURL[]; | 81 extern const char kChromeUIUserActionsURL[]; |
| 82 extern const char kChromeUIVersionURL[]; | 82 extern const char kChromeUIVersionURL[]; |
| 83 | 83 |
| 84 #if defined(OS_ANDROID) | 84 #if defined(OS_ANDROID) |
| 85 extern const char kChromeUIWelcomeURL[]; | 85 extern const char kChromeUIWelcomeURL[]; |
| 86 #endif | 86 #endif |
| 87 | 87 |
| 88 #if defined(OS_CHROMEOS) | 88 #if defined(OS_CHROMEOS) |
| 89 extern const char kChromeUIActivationMessage[]; | 89 extern const char kChromeUIActivationMessage[]; |
| 90 extern const char kChromeUIAppLaunchURL[]; | |
| 91 extern const char kChromeUIBluetoothPairingURL[]; | 90 extern const char kChromeUIBluetoothPairingURL[]; |
| 92 extern const char kChromeUIChooseMobileNetworkURL[]; | 91 extern const char kChromeUIChooseMobileNetworkURL[]; |
| 93 extern const char kChromeUIDiagnosticsURL[]; | 92 extern const char kChromeUIDiagnosticsURL[]; |
| 94 extern const char kChromeUIDiscardsURL[]; | 93 extern const char kChromeUIDiscardsURL[]; |
| 95 extern const char kChromeUIIdleLogoutDialogURL[]; | 94 extern const char kChromeUIIdleLogoutDialogURL[]; |
| 96 extern const char kChromeUIImageBurnerURL[]; | 95 extern const char kChromeUIImageBurnerURL[]; |
| 97 extern const char kChromeUIKeyboardOverlayURL[]; | 96 extern const char kChromeUIKeyboardOverlayURL[]; |
| 98 extern const char kChromeUILockScreenURL[]; | 97 extern const char kChromeUILockScreenURL[]; |
| 99 extern const char kChromeUIMediaplayerURL[]; | 98 extern const char kChromeUIMediaplayerURL[]; |
| 100 extern const char kChromeUIMobileSetupURL[]; | 99 extern const char kChromeUIMobileSetupURL[]; |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 // Parameters that get appended to force SafeSearch. | 471 // Parameters that get appended to force SafeSearch. |
| 473 extern const char kSafeSearchSafeParameter[]; | 472 extern const char kSafeSearchSafeParameter[]; |
| 474 extern const char kSafeSearchSsuiParameter[]; | 473 extern const char kSafeSearchSsuiParameter[]; |
| 475 | 474 |
| 476 // The URL for the "Learn more" link in the media access infobar. | 475 // The URL for the "Learn more" link in the media access infobar. |
| 477 extern const char kMediaAccessLearnMoreUrl[]; | 476 extern const char kMediaAccessLearnMoreUrl[]; |
| 478 | 477 |
| 479 } // namespace chrome | 478 } // namespace chrome |
| 480 | 479 |
| 481 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 480 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |