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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 extern const char kSearchSubPage[]; | 252 extern const char kSearchSubPage[]; |
253 extern const char kSyncSetupForceLoginSubPage[]; | 253 extern const char kSyncSetupForceLoginSubPage[]; |
254 extern const char kSyncSetupSubPage[]; | 254 extern const char kSyncSetupSubPage[]; |
255 #if defined(OS_CHROMEOS) | 255 #if defined(OS_CHROMEOS) |
256 extern const char kInternetOptionsSubPage[]; | 256 extern const char kInternetOptionsSubPage[]; |
257 extern const char kBluetoothAddDeviceSubPage[]; | 257 extern const char kBluetoothAddDeviceSubPage[]; |
258 #endif | 258 #endif |
259 | 259 |
260 extern const char kSyncGoogleDashboardURL[]; | 260 extern const char kSyncGoogleDashboardURL[]; |
261 | 261 |
| 262 // "Learn more" URL for the auto password generation. |
| 263 extern const char kAutoPasswordGenerationLearnMoreURL[]; |
| 264 |
262 extern const char kPasswordManagerLearnMoreURL[]; | 265 extern const char kPasswordManagerLearnMoreURL[]; |
263 | 266 |
264 // General help link for Chrome. | 267 // General help link for Chrome. |
265 extern const char kChromeHelpURL[]; | 268 extern const char kChromeHelpURL[]; |
266 | 269 |
267 // Help URL for the settings page's search feature. | 270 // Help URL for the settings page's search feature. |
268 extern const char kSettingsSearchHelpURL[]; | 271 extern const char kSettingsSearchHelpURL[]; |
269 | 272 |
270 // "About" URL for the translate bar's options menu. | 273 // "About" URL for the translate bar's options menu. |
271 extern const char kAboutGoogleTranslateURL[]; | 274 extern const char kAboutGoogleTranslateURL[]; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 #endif // defined(OS_CHROMEOS) | 350 #endif // defined(OS_CHROMEOS) |
348 | 351 |
349 #if defined(OS_CHROMEOS) | 352 #if defined(OS_CHROMEOS) |
350 // "Learn more" URL for the Cloud Print section under Options. | 353 // "Learn more" URL for the Cloud Print section under Options. |
351 extern const char kCloudPrintLearnMoreURL[]; | 354 extern const char kCloudPrintLearnMoreURL[]; |
352 #endif | 355 #endif |
353 | 356 |
354 } // namespace chrome | 357 } // namespace chrome |
355 | 358 |
356 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 359 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |