| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 extern const char kPasswordManagerSubPage[]; | 278 extern const char kPasswordManagerSubPage[]; |
| 279 extern const char kSearchEnginesSubPage[]; | 279 extern const char kSearchEnginesSubPage[]; |
| 280 extern const char kSearchSubPage[]; | 280 extern const char kSearchSubPage[]; |
| 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. |
| 289 extern const char kExtensionConfigureCommandsSubPage[]; |
| 290 |
| 288 extern const char kSyncGoogleDashboardURL[]; | 291 extern const char kSyncGoogleDashboardURL[]; |
| 289 | 292 |
| 290 // "Learn more" URL for the auto password generation. | 293 // "Learn more" URL for the auto password generation. |
| 291 extern const char kAutoPasswordGenerationLearnMoreURL[]; | 294 extern const char kAutoPasswordGenerationLearnMoreURL[]; |
| 292 | 295 |
| 293 extern const char kPasswordManagerLearnMoreURL[]; | 296 extern const char kPasswordManagerLearnMoreURL[]; |
| 294 | 297 |
| 295 // General help links for Chrome, opened using various actions. | 298 // General help links for Chrome, opened using various actions. |
| 296 extern const char kChromeHelpViaKeyboardURL[]; | 299 extern const char kChromeHelpViaKeyboardURL[]; |
| 297 extern const char kChromeHelpViaMenuURL[]; | 300 extern const char kChromeHelpViaMenuURL[]; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 #endif | 414 #endif |
| 412 | 415 |
| 413 #if defined(OS_CHROMEOS) | 416 #if defined(OS_CHROMEOS) |
| 414 // "Learn more" URL for the Cloud Print section under Options. | 417 // "Learn more" URL for the Cloud Print section under Options. |
| 415 extern const char kCloudPrintLearnMoreURL[]; | 418 extern const char kCloudPrintLearnMoreURL[]; |
| 416 #endif | 419 #endif |
| 417 | 420 |
| 418 } // namespace chrome | 421 } // namespace chrome |
| 419 | 422 |
| 420 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 423 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |