| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 #if defined(OS_CHROMEOS) | 485 #if defined(OS_CHROMEOS) |
| 486 const char kNaturalScrollHelpURL[] = | 486 const char kNaturalScrollHelpURL[] = |
| 487 "https://support.google.com/chromeos/?p=simple_scrolling"; | 487 "https://support.google.com/chromeos/?p=simple_scrolling"; |
| 488 #endif | 488 #endif |
| 489 | 489 |
| 490 #if defined(OS_CHROMEOS) | 490 #if defined(OS_CHROMEOS) |
| 491 const char kLearnMoreEnterpriseURL[] = | 491 const char kLearnMoreEnterpriseURL[] = |
| 492 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; | 492 "https://support.google.com/chromeos/bin/answer.py?answer=2535613"; |
| 493 #endif | 493 #endif |
| 494 | 494 |
| 495 const char kNotificationsHelpURL[] = |
| 496 "https://support.google.com/chrome/?p=ui_notifications"; |
| 497 |
| 495 const char* const kChromeDebugURLs[] = { | 498 const char* const kChromeDebugURLs[] = { |
| 496 content::kChromeUICrashURL, | 499 content::kChromeUICrashURL, |
| 497 content::kChromeUIKillURL, | 500 content::kChromeUIKillURL, |
| 498 content::kChromeUIHangURL, | 501 content::kChromeUIHangURL, |
| 499 content::kChromeUIShorthangURL, | 502 content::kChromeUIShorthangURL, |
| 500 content::kChromeUIGpuCleanURL, | 503 content::kChromeUIGpuCleanURL, |
| 501 content::kChromeUIGpuCrashURL, | 504 content::kChromeUIGpuCrashURL, |
| 502 content::kChromeUIGpuHangURL, | 505 content::kChromeUIGpuHangURL, |
| 503 content::kChromeUIPpapiFlashCrashURL, | 506 content::kChromeUIPpapiFlashCrashURL, |
| 504 content::kChromeUIPpapiFlashHangURL | 507 content::kChromeUIPpapiFlashHangURL |
| (...skipping 17 matching lines...) Expand all Loading... |
| 522 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; | 525 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; |
| 523 | 526 |
| 524 // Google SafeSearch query parameters. | 527 // Google SafeSearch query parameters. |
| 525 const char kSafeSearchSafeParameter[] = "safe=active"; | 528 const char kSafeSearchSafeParameter[] = "safe=active"; |
| 526 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 529 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
| 527 | 530 |
| 528 const char kMediaAccessLearnMoreUrl[] = | 531 const char kMediaAccessLearnMoreUrl[] = |
| 529 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 532 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
| 530 | 533 |
| 531 } // namespace chrome | 534 } // namespace chrome |
| OLD | NEW |