| 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 "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 extern const char kSyncSetupForceLoginSubPage[]; | 281 extern const char kSyncSetupForceLoginSubPage[]; |
| 282 extern const char kSyncSetupSubPage[]; | 282 extern const char kSyncSetupSubPage[]; |
| 283 #if defined(OS_CHROMEOS) | 283 #if defined(OS_CHROMEOS) |
| 284 extern const char kInternetOptionsSubPage[]; | 284 extern const char kInternetOptionsSubPage[]; |
| 285 extern const char kBluetoothAddDeviceSubPage[]; | 285 extern const char kBluetoothAddDeviceSubPage[]; |
| 286 #endif | 286 #endif |
| 287 | 287 |
| 288 // Extensions sub pages. | 288 // Extensions sub pages. |
| 289 extern const char kExtensionConfigureCommandsSubPage[]; | 289 extern const char kExtensionConfigureCommandsSubPage[]; |
| 290 | 290 |
| 291 // URLs used to indicate that an extension resource load request |
| 292 // was invalid. |
| 293 extern const char kExtensionInvalidRequestURL[]; |
| 294 extern const char kExtensionResourceInvalidRequestURL[]; |
| 295 |
| 291 extern const char kSyncGoogleDashboardURL[]; | 296 extern const char kSyncGoogleDashboardURL[]; |
| 292 | 297 |
| 293 // "Learn more" URL for the auto password generation. | 298 // "Learn more" URL for the auto password generation. |
| 294 extern const char kAutoPasswordGenerationLearnMoreURL[]; | 299 extern const char kAutoPasswordGenerationLearnMoreURL[]; |
| 295 | 300 |
| 296 extern const char kPasswordManagerLearnMoreURL[]; | 301 extern const char kPasswordManagerLearnMoreURL[]; |
| 297 | 302 |
| 298 // General help links for Chrome, opened using various actions. | 303 // General help links for Chrome, opened using various actions. |
| 299 extern const char kChromeHelpViaKeyboardURL[]; | 304 extern const char kChromeHelpViaKeyboardURL[]; |
| 300 extern const char kChromeHelpViaMenuURL[]; | 305 extern const char kChromeHelpViaMenuURL[]; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 #endif | 406 #endif |
| 402 | 407 |
| 403 #if defined(OS_CHROMEOS) | 408 #if defined(OS_CHROMEOS) |
| 404 // "Learn more" URL for the Cloud Print section under Options. | 409 // "Learn more" URL for the Cloud Print section under Options. |
| 405 extern const char kCloudPrintLearnMoreURL[]; | 410 extern const char kCloudPrintLearnMoreURL[]; |
| 406 #endif | 411 #endif |
| 407 | 412 |
| 408 } // namespace chrome | 413 } // namespace chrome |
| 409 | 414 |
| 410 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 415 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |