| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 305 |
| 306 // "What do these mean?" URL for the Page Info bubble. | 306 // "What do these mean?" URL for the Page Info bubble. |
| 307 extern const char kPageInfoHelpCenterURL[]; | 307 extern const char kPageInfoHelpCenterURL[]; |
| 308 | 308 |
| 309 // "Learn more" URL for "Aw snap" page. | 309 // "Learn more" URL for "Aw snap" page. |
| 310 extern const char kCrashReasonURL[]; | 310 extern const char kCrashReasonURL[]; |
| 311 | 311 |
| 312 // "Learn more" URL for killed tab page. | 312 // "Learn more" URL for killed tab page. |
| 313 extern const char kKillReasonURL[]; | 313 extern const char kKillReasonURL[]; |
| 314 | 314 |
| 315 // "Learn more" URL for the Win8 Data Privacy section under Options. |
| 316 extern const char kPrivacyWin8DataLearnMoreURL[]; |
| 317 |
| 315 // "Learn more" URL for the Privacy section under Options. | 318 // "Learn more" URL for the Privacy section under Options. |
| 316 extern const char kPrivacyLearnMoreURL[]; | 319 extern const char kPrivacyLearnMoreURL[]; |
| 317 | 320 |
| 318 // "Learn more" URL for the Continue where I left off startup option under | 321 // "Learn more" URL for the Continue where I left off startup option under |
| 319 // Options. | 322 // Options. |
| 320 extern const char kSessionRestoreLearnMoreURL[]; | 323 extern const char kSessionRestoreLearnMoreURL[]; |
| 321 | 324 |
| 322 // The URL for the Chromium project used in the About dialog. | 325 // The URL for the Chromium project used in the About dialog. |
| 323 extern const char kChromiumProjectURL[]; | 326 extern const char kChromiumProjectURL[]; |
| 324 | 327 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 #endif | 396 #endif |
| 394 | 397 |
| 395 #if defined(OS_CHROMEOS) | 398 #if defined(OS_CHROMEOS) |
| 396 // "Learn more" URL for the Cloud Print section under Options. | 399 // "Learn more" URL for the Cloud Print section under Options. |
| 397 extern const char kCloudPrintLearnMoreURL[]; | 400 extern const char kCloudPrintLearnMoreURL[]; |
| 398 #endif | 401 #endif |
| 399 | 402 |
| 400 } // namespace chrome | 403 } // namespace chrome |
| 401 | 404 |
| 402 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 405 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |