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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 const char kCloudPrintLearnMoreURL[] = | 456 const char kCloudPrintLearnMoreURL[] = |
457 #if defined(OS_CHROMEOS) | 457 #if defined(OS_CHROMEOS) |
458 "https://support.google.com/chromeos/?p=settings_cloud_print"; | 458 "https://support.google.com/chromeos/?p=settings_cloud_print"; |
459 #else | 459 #else |
460 "https://support.google.com/chrome/?p=settings_cloud_print"; | 460 "https://support.google.com/chrome/?p=settings_cloud_print"; |
461 #endif | 461 #endif |
462 | 462 |
463 const char kInvalidPasswordHelpURL[] = | 463 const char kInvalidPasswordHelpURL[] = |
464 "https://support.google.com/accounts/bin/answer.py?ctx=ch&answer=27444"; | 464 "https://support.google.com/accounts/bin/answer.py?ctx=ch&answer=27444"; |
465 | 465 |
| 466 const char kAppLauncherHelpURL[] = |
| 467 "https://support.google.com/chrome/?p=cws_app_launcher"; |
| 468 |
466 const char kCanNotAccessAccountURL[] = | 469 const char kCanNotAccessAccountURL[] = |
467 "https://support.google.com/accounts/bin/answer.py?answer=48598"; | 470 "https://support.google.com/accounts/bin/answer.py?answer=48598"; |
468 | 471 |
469 const char kSyncEncryptionHelpURL[] = | 472 const char kSyncEncryptionHelpURL[] = |
470 #if defined(OS_CHROMEOS) | 473 #if defined(OS_CHROMEOS) |
471 "https://support.google.com/chromeos/?p=settings_encryption"; | 474 "https://support.google.com/chromeos/?p=settings_encryption"; |
472 #else | 475 #else |
473 "https://support.google.com/chrome/?p=settings_encryption"; | 476 "https://support.google.com/chrome/?p=settings_encryption"; |
474 #endif | 477 #endif |
475 | 478 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 const char kChromeSearchSuggestionHost[] = "suggestion"; | 526 const char kChromeSearchSuggestionHost[] = "suggestion"; |
524 | 527 |
525 // Google SafeSearch query parameters. | 528 // Google SafeSearch query parameters. |
526 const char kSafeSearchSafeParameter[] = "safe=active"; | 529 const char kSafeSearchSafeParameter[] = "safe=active"; |
527 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 530 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
528 | 531 |
529 const char kMediaAccessLearnMoreUrl[] = | 532 const char kMediaAccessLearnMoreUrl[] = |
530 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 533 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
531 | 534 |
532 } // namespace chrome | 535 } // namespace chrome |
OLD | NEW |