| 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 extern const char kLanguageOptionsSubPage[]; | 247 extern const char kLanguageOptionsSubPage[]; |
| 248 extern const char kManageProfileSubPage[]; | 248 extern const char kManageProfileSubPage[]; |
| 249 extern const char kPasswordManagerSubPage[]; | 249 extern const char kPasswordManagerSubPage[]; |
| 250 extern const char kPersonalOptionsSubPage[]; | 250 extern const char kPersonalOptionsSubPage[]; |
| 251 extern const char kSearchEnginesSubPage[]; | 251 extern const char kSearchEnginesSubPage[]; |
| 252 extern const char kSyncSetupForceLoginSubPage[]; | 252 extern const char kSyncSetupForceLoginSubPage[]; |
| 253 extern const char kSyncSetupSubPage[]; | 253 extern const char kSyncSetupSubPage[]; |
| 254 #if defined(OS_CHROMEOS) | 254 #if defined(OS_CHROMEOS) |
| 255 extern const char kInternetOptionsSubPage[]; | 255 extern const char kInternetOptionsSubPage[]; |
| 256 extern const char kSystemOptionsSubPage[]; | 256 extern const char kSystemOptionsSubPage[]; |
| 257 extern const char kBluetoothAddDeviceSubPage[]; |
| 257 #endif | 258 #endif |
| 258 | 259 |
| 259 extern const char kSyncGoogleDashboardURL[]; | 260 extern const char kSyncGoogleDashboardURL[]; |
| 260 | 261 |
| 261 extern const char kPasswordManagerLearnMoreURL[]; | 262 extern const char kPasswordManagerLearnMoreURL[]; |
| 262 | 263 |
| 263 // General help link for Chrome. | 264 // General help link for Chrome. |
| 264 extern const char kChromeHelpURL[]; | 265 extern const char kChromeHelpURL[]; |
| 265 | 266 |
| 266 // Help URL for the settings page's search feature. | 267 // Help URL for the settings page's search feature. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 void RegisterChromeSchemes(); | 348 void RegisterChromeSchemes(); |
| 348 | 349 |
| 349 #if defined(OS_CHROMEOS) | 350 #if defined(OS_CHROMEOS) |
| 350 // "Learn more" URL for the Cloud Print section under Options. | 351 // "Learn more" URL for the Cloud Print section under Options. |
| 351 extern const char kCloudPrintLearnMoreURL[]; | 352 extern const char kCloudPrintLearnMoreURL[]; |
| 352 #endif | 353 #endif |
| 353 | 354 |
| 354 } // namespace chrome | 355 } // namespace chrome |
| 355 | 356 |
| 356 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 357 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |