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 <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 | 418 |
419 const char kSupervisedUserManagementDisplayURL[] = "www.chrome.com/manage"; | 419 const char kSupervisedUserManagementDisplayURL[] = "www.chrome.com/manage"; |
420 | 420 |
421 const char kSettingsSearchHelpURL[] = | 421 const char kSettingsSearchHelpURL[] = |
422 #if defined(OS_CHROMEOS) | 422 #if defined(OS_CHROMEOS) |
423 "https://support.google.com/chromeos/?p=settings_search_help"; | 423 "https://support.google.com/chromeos/?p=settings_search_help"; |
424 #else | 424 #else |
425 "https://support.google.com/chrome/?p=settings_search_help"; | 425 "https://support.google.com/chrome/?p=settings_search_help"; |
426 #endif | 426 #endif |
427 | 427 |
428 const char kAboutGoogleTranslateURL[] = | |
429 #if defined(OS_CHROMEOS) | |
430 "https://support.google.com/chromeos/?p=ib_translation_bar"; | |
431 #else | |
432 "https://support.google.com/chrome/?p=ib_translation_bar"; | |
433 #endif | |
434 | |
435 const char kOmniboxLearnMoreURL[] = | 428 const char kOmniboxLearnMoreURL[] = |
436 #if defined(OS_CHROMEOS) | 429 #if defined(OS_CHROMEOS) |
437 "https://support.google.com/chromeos/?p=settings_omnibox"; | 430 "https://support.google.com/chromeos/?p=settings_omnibox"; |
438 #else | 431 #else |
439 "https://support.google.com/chrome/?p=settings_omnibox"; | 432 "https://support.google.com/chrome/?p=settings_omnibox"; |
440 #endif | 433 #endif |
441 | 434 |
442 const char kPageInfoHelpCenterURL[] = | 435 const char kPageInfoHelpCenterURL[] = |
443 #if defined(OS_CHROMEOS) | 436 #if defined(OS_CHROMEOS) |
444 "https://support.google.com/chromeos/?p=ui_security_indicator"; | 437 "https://support.google.com/chromeos/?p=ui_security_indicator"; |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 ""; | 703 ""; |
711 #endif | 704 #endif |
712 #endif | 705 #endif |
713 | 706 |
714 // TODO(tengs): Replace with real URL when ready. | 707 // TODO(tengs): Replace with real URL when ready. |
715 const char kEasyUnlockLearnMoreUrl[] = | 708 const char kEasyUnlockLearnMoreUrl[] = |
716 "https://support.google.com/chromebook/?p=easy_unlock"; | 709 "https://support.google.com/chromebook/?p=easy_unlock"; |
717 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; | 710 const char kEasyUnlockManagementUrl[] = "https://chrome.com"; |
718 | 711 |
719 } // namespace chrome | 712 } // namespace chrome |
OLD | NEW |