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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 #endif | 505 #endif |
506 | 506 |
507 const char* const kChromeDebugURLs[] = { | 507 const char* const kChromeDebugURLs[] = { |
508 kChromeUICrashURL, | 508 kChromeUICrashURL, |
509 kChromeUIKillURL, | 509 kChromeUIKillURL, |
510 kChromeUIHangURL, | 510 kChromeUIHangURL, |
511 content::kChromeUIShorthangURL, | 511 content::kChromeUIShorthangURL, |
512 kChromeUIGpuCleanURL, | 512 kChromeUIGpuCleanURL, |
513 kChromeUIGpuCrashURL, | 513 kChromeUIGpuCrashURL, |
514 kChromeUIGpuHangURL, | 514 kChromeUIGpuHangURL, |
| 515 kChromeUIPpapiFlashCrashURL, |
| 516 kChromeUIPpapiFlashHangURL |
515 }; | 517 }; |
516 const int kNumberOfChromeDebugURLs = | 518 const int kNumberOfChromeDebugURLs = |
517 static_cast<int>(arraysize(kChromeDebugURLs)); | 519 static_cast<int>(arraysize(kChromeDebugURLs)); |
518 | 520 |
519 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 521 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
520 | 522 |
521 // Google SafeSearch query parameters. | 523 // Google SafeSearch query parameters. |
522 const char kSafeSearchSafeParameter[] = "safe=active"; | 524 const char kSafeSearchSafeParameter[] = "safe=active"; |
523 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 525 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
524 | 526 |
525 const char kMediaAccessLearnMoreUrl[] = | 527 const char kMediaAccessLearnMoreUrl[] = |
526 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 528 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
527 | 529 |
528 } // namespace chrome | 530 } // namespace chrome |
OLD | NEW |