| 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 kChromeUIPpapiFlashCrashURL, | 512 kChromeUIPpapiFlashCrashURL, |
| 513 kChromeUIPpapiFlashHangURL | 513 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 const char kChromeSigninScheme[] = "chrome-signin"; |
| 523 |
| 522 // Google SafeSearch query parameters. | 524 // Google SafeSearch query parameters. |
| 523 const char kSafeSearchSafeParameter[] = "safe=active"; | 525 const char kSafeSearchSafeParameter[] = "safe=active"; |
| 524 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 526 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
| 525 | 527 |
| 526 const char kMediaAccessLearnMoreUrl[] = | 528 const char kMediaAccessLearnMoreUrl[] = |
| 527 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 529 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
| 528 | 530 |
| 529 } // namespace chrome | 531 } // namespace chrome |
| OLD | NEW |