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