| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 // Extension sub pages. | 365 // Extension sub pages. |
| 366 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 366 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 367 | 367 |
| 368 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 368 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 369 const char kExtensionResourceInvalidRequestURL[] = | 369 const char kExtensionResourceInvalidRequestURL[] = |
| 370 "chrome-extension-resource://invalid/"; | 370 "chrome-extension-resource://invalid/"; |
| 371 | 371 |
| 372 const char kSyncGoogleDashboardURL[] = | 372 const char kSyncGoogleDashboardURL[] = |
| 373 "https://www.google.com/settings/chrome/sync/"; | 373 "https://www.google.com/settings/chrome/sync/"; |
| 374 | 374 |
| 375 const char kGoogleAccountActivityControlsURL[] = |
| 376 "https://myaccount.google.com/privacy?pli=1#activitycontrols"; |
| 377 |
| 375 const char kPasswordManagerLearnMoreURL[] = | 378 const char kPasswordManagerLearnMoreURL[] = |
| 376 #if defined(OS_CHROMEOS) | 379 #if defined(OS_CHROMEOS) |
| 377 "https://support.google.com/chromebook/?p=settings_password"; | 380 "https://support.google.com/chromebook/?p=settings_password"; |
| 378 #else | 381 #else |
| 379 "https://support.google.com/chrome/?p=settings_password"; | 382 "https://support.google.com/chrome/?p=settings_password"; |
| 380 #endif | 383 #endif |
| 381 | 384 |
| 382 const char kUpgradeHelpCenterBaseURL[] = | 385 const char kUpgradeHelpCenterBaseURL[] = |
| 383 "https://support.google.com/installer/?product=" | 386 "https://support.google.com/installer/?product=" |
| 384 "{8A69D345-D564-463c-AFF1-A69D9E530F96}&error="; | 387 "{8A69D345-D564-463c-AFF1-A69D9E530F96}&error="; |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html
"; | 769 "https://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html
"; |
| 767 #endif | 770 #endif |
| 768 | 771 |
| 769 const char kChooserBluetoothOverviewURL[] = | 772 const char kChooserBluetoothOverviewURL[] = |
| 770 "https://support.google.com/chrome?p=bluetooth"; | 773 "https://support.google.com/chrome?p=bluetooth"; |
| 771 | 774 |
| 772 const char kChooserUsbOverviewURL[] = | 775 const char kChooserUsbOverviewURL[] = |
| 773 "https://support.google.com/chrome?p=webusb"; | 776 "https://support.google.com/chrome?p=webusb"; |
| 774 | 777 |
| 775 } // namespace chrome | 778 } // namespace chrome |
| OLD | NEW |