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