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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include "googleurl/src/url_util.h" | 7 #include "googleurl/src/url_util.h" |
8 | 8 |
9 namespace chrome { | 9 namespace chrome { |
10 | 10 |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 "https://support.google.com/chrome/?p=e_awsnap"; | 400 "https://support.google.com/chrome/?p=e_awsnap"; |
401 #endif | 401 #endif |
402 | 402 |
403 const char kKillReasonURL[] = | 403 const char kKillReasonURL[] = |
404 #if defined(OS_CHROMEOS) | 404 #if defined(OS_CHROMEOS) |
405 "https://support.google.com/chromeos/?p=e_deadjim"; | 405 "https://support.google.com/chromeos/?p=e_deadjim"; |
406 #else | 406 #else |
407 "https://support.google.com/chrome/?p=e_deadjim"; | 407 "https://support.google.com/chrome/?p=e_deadjim"; |
408 #endif | 408 #endif |
409 | 409 |
| 410 #if defined(OS_WIN) |
| 411 const char kPrivacyWin8DataLearnMoreURL[] = |
| 412 "https://support.google.com/chrome/?p=win8_directories"; |
| 413 #endif |
| 414 |
410 const char kPrivacyLearnMoreURL[] = | 415 const char kPrivacyLearnMoreURL[] = |
411 #if defined(OS_CHROMEOS) | 416 #if defined(OS_CHROMEOS) |
412 "https://support.google.com/chromeos/?p=settings_privacy"; | 417 "https://support.google.com/chromeos/?p=settings_privacy"; |
413 #else | 418 #else |
414 "https://support.google.com/chrome/?p=settings_privacy"; | 419 "https://support.google.com/chrome/?p=settings_privacy"; |
415 #endif | 420 #endif |
416 | 421 |
417 const char kSessionRestoreLearnMoreURL[] = | 422 const char kSessionRestoreLearnMoreURL[] = |
418 "https://support.google.com/chrome/?p=settings_reopen_pages"; | 423 "https://support.google.com/chrome/?p=settings_reopen_pages"; |
419 | 424 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 kChromeUIGpuCrashURL, | 491 kChromeUIGpuCrashURL, |
487 kChromeUIGpuHangURL, | 492 kChromeUIGpuHangURL, |
488 }; | 493 }; |
489 const int kNumberOfChromeDebugURLs = | 494 const int kNumberOfChromeDebugURLs = |
490 static_cast<int>(arraysize(kChromeDebugURLs)); | 495 static_cast<int>(arraysize(kChromeDebugURLs)); |
491 | 496 |
492 const char kExtensionScheme[] = "chrome-extension"; | 497 const char kExtensionScheme[] = "chrome-extension"; |
493 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 498 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
494 | 499 |
495 } // namespace chrome | 500 } // namespace chrome |
OLD | NEW |