| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 const char kDateTimeSubPage[] = "dateTime"; | 376 const char kDateTimeSubPage[] = "dateTime"; |
| 377 const char kDeprecatedOptionsSearchSubPage[] = "search"; | 377 const char kDeprecatedOptionsSearchSubPage[] = "search"; |
| 378 const char kInternetOptionsSubPage[] = "internet"; | 378 const char kInternetOptionsSubPage[] = "internet"; |
| 379 const char kPowerOptionsSubPage[] = "power-overlay"; | 379 const char kPowerOptionsSubPage[] = "power-overlay"; |
| 380 #endif | 380 #endif |
| 381 | 381 |
| 382 // Extension sub pages. | 382 // Extension sub pages. |
| 383 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 383 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 384 | 384 |
| 385 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 385 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 386 const char kExtensionResourceInvalidRequestURL[] = | |
| 387 "chrome-extension-resource://invalid/"; | |
| 388 | 386 |
| 389 const char kSyncGoogleDashboardURL[] = | 387 const char kSyncGoogleDashboardURL[] = |
| 390 "https://www.google.com/settings/chrome/sync/"; | 388 "https://www.google.com/settings/chrome/sync/"; |
| 391 | 389 |
| 392 const char kGoogleAccountActivityControlsURL[] = | 390 const char kGoogleAccountActivityControlsURL[] = |
| 393 "https://myaccount.google.com/activitycontrols/search"; | 391 "https://myaccount.google.com/activitycontrols/search"; |
| 394 | 392 |
| 395 const char kPasswordManagerLearnMoreURL[] = | 393 const char kPasswordManagerLearnMoreURL[] = |
| 396 #if defined(OS_CHROMEOS) | 394 #if defined(OS_CHROMEOS) |
| 397 "https://support.google.com/chromebook/?p=settings_password"; | 395 "https://support.google.com/chromebook/?p=settings_password"; |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 #endif | 808 #endif |
| 811 | 809 |
| 812 const char kChooserUsbOverviewURL[] = | 810 const char kChooserUsbOverviewURL[] = |
| 813 "https://support.google.com/chrome?p=webusb"; | 811 "https://support.google.com/chrome?p=webusb"; |
| 814 | 812 |
| 815 #if defined(OS_CHROMEOS) | 813 #if defined(OS_CHROMEOS) |
| 816 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 814 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 817 #endif | 815 #endif |
| 818 | 816 |
| 819 } // namespace chrome | 817 } // namespace chrome |
| OLD | NEW |