| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 #if defined(OS_CHROMEOS) | 375 #if defined(OS_CHROMEOS) |
| 376 const char kAccessibilitySubPage[] = "accessibility"; | 376 const char kAccessibilitySubPage[] = "accessibility"; |
| 377 const char kBluetoothSubPage[] = "bluetoothDevices"; | 377 const char kBluetoothSubPage[] = "bluetoothDevices"; |
| 378 const char kDateTimeSubPage[] = "dateTime"; | 378 const char kDateTimeSubPage[] = "dateTime"; |
| 379 const char kDeprecatedOptionsSearchSubPage[] = "search"; | 379 const char kDeprecatedOptionsSearchSubPage[] = "search"; |
| 380 const char kDisplaySubPage[] = "display"; | 380 const char kDisplaySubPage[] = "display"; |
| 381 const char kInternetSubPage[] = "internet"; | 381 const char kInternetSubPage[] = "internet"; |
| 382 const char kNetworkDetailSubPage[] = "networkDetail"; | 382 const char kNetworkDetailSubPage[] = "networkDetail"; |
| 383 const char kPowerSubPage[] = "power"; | 383 const char kPowerSubPage[] = "power"; |
| 384 const char kStylusSubPage[] = "stylus"; | 384 const char kStylusSubPage[] = "stylus"; |
| 385 const char kHelpSubPage[] = "help"; |
| 385 #else | 386 #else |
| 386 const char kCreateProfileSubPage[] = "createProfile"; | 387 const char kCreateProfileSubPage[] = "createProfile"; |
| 387 const char kManageProfileSubPage[] = "manageProfile"; | 388 const char kManageProfileSubPage[] = "manageProfile"; |
| 388 #endif | 389 #endif |
| 389 | 390 |
| 390 // Extension sub pages. | 391 // Extension sub pages. |
| 391 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 392 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 392 | 393 |
| 393 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 394 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 394 | 395 |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 #endif | 830 #endif |
| 830 | 831 |
| 831 const char kChooserUsbOverviewURL[] = | 832 const char kChooserUsbOverviewURL[] = |
| 832 "https://support.google.com/chrome?p=webusb"; | 833 "https://support.google.com/chrome?p=webusb"; |
| 833 | 834 |
| 834 #if defined(OS_CHROMEOS) | 835 #if defined(OS_CHROMEOS) |
| 835 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 836 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 836 #endif | 837 #endif |
| 837 | 838 |
| 838 } // namespace chrome | 839 } // namespace chrome |
| OLD | NEW |