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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 extern const char kInstantConfirmPage[]; | 246 extern const char kInstantConfirmPage[]; |
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[]; | |
257 extern const char kBluetoothAddDeviceSubPage[]; | 256 extern const char kBluetoothAddDeviceSubPage[]; |
258 #endif | 257 #endif |
259 | 258 |
260 extern const char kSyncGoogleDashboardURL[]; | 259 extern const char kSyncGoogleDashboardURL[]; |
261 | 260 |
262 extern const char kPasswordManagerLearnMoreURL[]; | 261 extern const char kPasswordManagerLearnMoreURL[]; |
263 | 262 |
264 // General help link for Chrome. | 263 // General help link for Chrome. |
265 extern const char kChromeHelpURL[]; | 264 extern const char kChromeHelpURL[]; |
266 | 265 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 void RegisterChromeSchemes(); | 347 void RegisterChromeSchemes(); |
349 | 348 |
350 #if defined(OS_CHROMEOS) | 349 #if defined(OS_CHROMEOS) |
351 // "Learn more" URL for the Cloud Print section under Options. | 350 // "Learn more" URL for the Cloud Print section under Options. |
352 extern const char kCloudPrintLearnMoreURL[]; | 351 extern const char kCloudPrintLearnMoreURL[]; |
353 #endif | 352 #endif |
354 | 353 |
355 } // namespace chrome | 354 } // namespace chrome |
356 | 355 |
357 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 356 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |