| 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/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 386 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 387 | 387 |
| 388 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 388 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 389 | 389 |
| 390 const char kSyncGoogleDashboardURL[] = | 390 const char kSyncGoogleDashboardURL[] = |
| 391 "https://www.google.com/settings/chrome/sync/"; | 391 "https://www.google.com/settings/chrome/sync/"; |
| 392 | 392 |
| 393 const char kGoogleAccountActivityControlsURL[] = | 393 const char kGoogleAccountActivityControlsURL[] = |
| 394 "https://myaccount.google.com/activitycontrols/search"; | 394 "https://myaccount.google.com/activitycontrols/search"; |
| 395 | 395 |
| 396 const char kContentSettingsExceptionsLearnMoreURL[] = |
| 397 "https://support.google.com/chrome/?p=settings_manage_exceptions"; |
| 398 |
| 396 const char kPasswordManagerLearnMoreURL[] = | 399 const char kPasswordManagerLearnMoreURL[] = |
| 397 #if defined(OS_CHROMEOS) | 400 #if defined(OS_CHROMEOS) |
| 398 "https://support.google.com/chromebook/?p=settings_password"; | 401 "https://support.google.com/chromebook/?p=settings_password"; |
| 399 #else | 402 #else |
| 400 "https://support.google.com/chrome/?p=settings_password"; | 403 "https://support.google.com/chrome/?p=settings_password"; |
| 401 #endif | 404 #endif |
| 402 | 405 |
| 403 const char kUpgradeHelpCenterBaseURL[] = | 406 const char kUpgradeHelpCenterBaseURL[] = |
| 404 "https://support.google.com/installer/?product=" | 407 "https://support.google.com/installer/?product=" |
| 405 "{8A69D345-D564-463c-AFF1-A69D9E530F96}&error="; | 408 "{8A69D345-D564-463c-AFF1-A69D9E530F96}&error="; |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 #endif | 816 #endif |
| 814 | 817 |
| 815 const char kChooserUsbOverviewURL[] = | 818 const char kChooserUsbOverviewURL[] = |
| 816 "https://support.google.com/chrome?p=webusb"; | 819 "https://support.google.com/chrome?p=webusb"; |
| 817 | 820 |
| 818 #if defined(OS_CHROMEOS) | 821 #if defined(OS_CHROMEOS) |
| 819 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 822 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 820 #endif | 823 #endif |
| 821 | 824 |
| 822 } // namespace chrome | 825 } // namespace chrome |
| OLD | NEW |