| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 // "Learn more" URL for the auto password generation. | 301 // "Learn more" URL for the auto password generation. |
| 302 extern const char kAutoPasswordGenerationLearnMoreURL[]; | 302 extern const char kAutoPasswordGenerationLearnMoreURL[]; |
| 303 | 303 |
| 304 extern const char kPasswordManagerLearnMoreURL[]; | 304 extern const char kPasswordManagerLearnMoreURL[]; |
| 305 | 305 |
| 306 // General help links for Chrome, opened using various actions. | 306 // General help links for Chrome, opened using various actions. |
| 307 extern const char kChromeHelpViaKeyboardURL[]; | 307 extern const char kChromeHelpViaKeyboardURL[]; |
| 308 extern const char kChromeHelpViaMenuURL[]; | 308 extern const char kChromeHelpViaMenuURL[]; |
| 309 extern const char kChromeHelpViaWebUIURL[]; | 309 extern const char kChromeHelpViaWebUIURL[]; |
| 310 | 310 |
| 311 #if defined(OS_CHROMEOS) |
| 312 // Accessibility help link for Chrome. |
| 313 extern const char kChromeAccessibilityHelpURL[]; |
| 314 #endif |
| 315 |
| 311 // "Learn more" URL for the one click signin infobar. | 316 // "Learn more" URL for the one click signin infobar. |
| 312 extern const char kChromeSyncLearnMoreURL[]; | 317 extern const char kChromeSyncLearnMoreURL[]; |
| 313 | 318 |
| 314 // Help URL for the settings page's search feature. | 319 // Help URL for the settings page's search feature. |
| 315 extern const char kSettingsSearchHelpURL[]; | 320 extern const char kSettingsSearchHelpURL[]; |
| 316 | 321 |
| 317 // "About" URL for the translate bar's options menu. | 322 // "About" URL for the translate bar's options menu. |
| 318 extern const char kAboutGoogleTranslateURL[]; | 323 extern const char kAboutGoogleTranslateURL[]; |
| 319 | 324 |
| 320 // Help URL for the Autofill dialog. | 325 // Help URL for the Autofill dialog. |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 extern const char kCloudPrintLearnMoreURL[]; | 418 extern const char kCloudPrintLearnMoreURL[]; |
| 414 #endif | 419 #endif |
| 415 | 420 |
| 416 // Parameters that get appended to force SafeSearch. | 421 // Parameters that get appended to force SafeSearch. |
| 417 extern const char kSafeSearchSafeParameter[]; | 422 extern const char kSafeSearchSafeParameter[]; |
| 418 extern const char kSafeSearchSsuiParameter[]; | 423 extern const char kSafeSearchSsuiParameter[]; |
| 419 | 424 |
| 420 } // namespace chrome | 425 } // namespace chrome |
| 421 | 426 |
| 422 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 427 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |