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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 const char kChromeSyncLearnMoreURL[] = | 360 const char kChromeSyncLearnMoreURL[] = |
361 #if defined(OS_CHROMEOS) | 361 #if defined(OS_CHROMEOS) |
362 "http://support.google.com/chromeos/bin/answer.py?answer=165139"; | 362 "http://support.google.com/chromeos/bin/answer.py?answer=165139"; |
363 #else | 363 #else |
364 "http://support.google.com/chrome/bin/answer.py?answer=165139"; | 364 "http://support.google.com/chrome/bin/answer.py?answer=165139"; |
365 #endif | 365 #endif |
366 | 366 |
367 const char kChromeEnterpriseSignInLearnMoreURL[] = | 367 const char kChromeEnterpriseSignInLearnMoreURL[] = |
368 "http://support.google.com/chromeos/bin/answer.py?hl=en&answer=1331549"; | 368 "http://support.google.com/chromeos/bin/answer.py?hl=en&answer=1331549"; |
369 | 369 |
| 370 const char kSupervisedUserManagementURL[] = "https://www.chrome.com/manage"; |
| 371 |
| 372 const char kSupervisedUserManagementDisplayURL[] = "www.chrome.com/manage"; |
| 373 |
370 const char kSettingsSearchHelpURL[] = | 374 const char kSettingsSearchHelpURL[] = |
371 #if defined(OS_CHROMEOS) | 375 #if defined(OS_CHROMEOS) |
372 "https://support.google.com/chromeos/?p=settings_search_help"; | 376 "https://support.google.com/chromeos/?p=settings_search_help"; |
373 #else | 377 #else |
374 "https://support.google.com/chrome/?p=settings_search_help"; | 378 "https://support.google.com/chrome/?p=settings_search_help"; |
375 #endif | 379 #endif |
376 | 380 |
377 const char kAboutGoogleTranslateURL[] = | 381 const char kAboutGoogleTranslateURL[] = |
378 #if defined(OS_CHROMEOS) | 382 #if defined(OS_CHROMEOS) |
379 "https://support.google.com/chromeos/?p=ib_translation_bar"; | 383 "https://support.google.com/chromeos/?p=ib_translation_bar"; |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; | 522 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; |
519 | 523 |
520 // Google SafeSearch query parameters. | 524 // Google SafeSearch query parameters. |
521 const char kSafeSearchSafeParameter[] = "safe=active"; | 525 const char kSafeSearchSafeParameter[] = "safe=active"; |
522 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 526 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
523 | 527 |
524 const char kMediaAccessLearnMoreUrl[] = | 528 const char kMediaAccessLearnMoreUrl[] = |
525 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 529 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
526 | 530 |
527 } // namespace chrome | 531 } // namespace chrome |
OLD | NEW |