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