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