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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 | 328 |
329 // "Learn more" URL for killed tab page. | 329 // "Learn more" URL for killed tab page. |
330 extern const char kKillReasonURL[]; | 330 extern const char kKillReasonURL[]; |
331 | 331 |
332 // "Learn more" URL for the Privacy section under Options. | 332 // "Learn more" URL for the Privacy section under Options. |
333 extern const char kPrivacyLearnMoreURL[]; | 333 extern const char kPrivacyLearnMoreURL[]; |
334 | 334 |
335 // "Learn more" URL for the "Do not track" setting in the privacy section. | 335 // "Learn more" URL for the "Do not track" setting in the privacy section. |
336 extern const char kDoNotTrackLearnMoreURL[]; | 336 extern const char kDoNotTrackLearnMoreURL[]; |
337 | 337 |
338 // "Learn more" URL for the Continue where I left off startup option under | |
339 // Options. | |
340 extern const char kSessionRestoreLearnMoreURL[]; | |
341 | |
342 // The URL for the Chromium project used in the About dialog. | 338 // The URL for the Chromium project used in the About dialog. |
343 extern const char kChromiumProjectURL[]; | 339 extern const char kChromiumProjectURL[]; |
344 | 340 |
345 // The URL for the "Learn more" page for the usage/crash reporting option in the | 341 // The URL for the "Learn more" page for the usage/crash reporting option in the |
346 // first run dialog. | 342 // first run dialog. |
347 extern const char kLearnMoreReportingURL[]; | 343 extern const char kLearnMoreReportingURL[]; |
348 | 344 |
349 // The URL for the "Learn more" page for the outdated plugin infobar. | 345 // The URL for the "Learn more" page for the outdated plugin infobar. |
350 extern const char kOutdatedPluginLearnMoreURL[]; | 346 extern const char kOutdatedPluginLearnMoreURL[]; |
351 | 347 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 #endif | 410 #endif |
415 | 411 |
416 #if defined(OS_CHROMEOS) | 412 #if defined(OS_CHROMEOS) |
417 // "Learn more" URL for the Cloud Print section under Options. | 413 // "Learn more" URL for the Cloud Print section under Options. |
418 extern const char kCloudPrintLearnMoreURL[]; | 414 extern const char kCloudPrintLearnMoreURL[]; |
419 #endif | 415 #endif |
420 | 416 |
421 } // namespace chrome | 417 } // namespace chrome |
422 | 418 |
423 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 419 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |