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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 const char kNaturalScrollHelpURL[] = | 495 const char kNaturalScrollHelpURL[] = |
496 "https://support.google.com/chromeos/?p=simple_scrolling"; | 496 "https://support.google.com/chromeos/?p=simple_scrolling"; |
497 #endif | 497 #endif |
498 | 498 |
499 #if defined(OS_CHROMEOS) | 499 #if defined(OS_CHROMEOS) |
500 const char kLearnMoreEnterpriseURL[] = | 500 const char kLearnMoreEnterpriseURL[] = |
501 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; | 501 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; |
502 #endif | 502 #endif |
503 | 503 |
504 const char* const kChromeDebugURLs[] = { | 504 const char* const kChromeDebugURLs[] = { |
505 kChromeUICrashURL, | 505 content::kChromeUICrashURL, |
506 kChromeUIKillURL, | 506 content::kChromeUIKillURL, |
507 kChromeUIHangURL, | 507 content::kChromeUIHangURL, |
508 content::kChromeUIShorthangURL, | 508 content::kChromeUIShorthangURL, |
509 kChromeUIGpuCleanURL, | 509 content::kChromeUIGpuCleanURL, |
510 kChromeUIGpuCrashURL, | 510 content::kChromeUIGpuCrashURL, |
511 kChromeUIGpuHangURL, | 511 content::kChromeUIGpuHangURL, |
512 kChromeUIPpapiFlashCrashURL, | 512 content::kChromeUIPpapiFlashCrashURL, |
513 kChromeUIPpapiFlashHangURL | 513 content::kChromeUIPpapiFlashHangURL |
514 }; | 514 }; |
515 const int kNumberOfChromeDebugURLs = | 515 const int kNumberOfChromeDebugURLs = |
516 static_cast<int>(arraysize(kChromeDebugURLs)); | 516 static_cast<int>(arraysize(kChromeDebugURLs)); |
517 | 517 |
518 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 518 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
519 | 519 |
520 const char kChromeSearchScheme[] = "chrome-search"; | 520 const char kChromeSearchScheme[] = "chrome-search"; |
521 | 521 |
522 // Google SafeSearch query parameters. | 522 // Google SafeSearch query parameters. |
523 const char kSafeSearchSafeParameter[] = "safe=active"; | 523 const char kSafeSearchSafeParameter[] = "safe=active"; |
524 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 524 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
525 | 525 |
526 const char kMediaAccessLearnMoreUrl[] = | 526 const char kMediaAccessLearnMoreUrl[] = |
527 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 527 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
528 | 528 |
529 } // namespace chrome | 529 } // namespace chrome |
OLD | NEW |