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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 extern const char kSyncGoogleDashboardURL[]; | 264 extern const char kSyncGoogleDashboardURL[]; |
265 | 265 |
266 // "Learn more" URL for the auto password generation. | 266 // "Learn more" URL for the auto password generation. |
267 extern const char kAutoPasswordGenerationLearnMoreURL[]; | 267 extern const char kAutoPasswordGenerationLearnMoreURL[]; |
268 | 268 |
269 extern const char kPasswordManagerLearnMoreURL[]; | 269 extern const char kPasswordManagerLearnMoreURL[]; |
270 | 270 |
271 // General help link for Chrome. | 271 // General help link for Chrome. |
272 extern const char kChromeHelpURL[]; | 272 extern const char kChromeHelpURL[]; |
273 | 273 |
| 274 // "Learn more" URL for the one click signin infobar. |
| 275 extern const char kChromeSyncLearnMoreURL[]; |
| 276 |
274 // Help URL for the settings page's search feature. | 277 // Help URL for the settings page's search feature. |
275 extern const char kSettingsSearchHelpURL[]; | 278 extern const char kSettingsSearchHelpURL[]; |
276 | 279 |
277 // "About" URL for the translate bar's options menu. | 280 // "About" URL for the translate bar's options menu. |
278 extern const char kAboutGoogleTranslateURL[]; | 281 extern const char kAboutGoogleTranslateURL[]; |
279 | 282 |
280 // Help URL for the Autofill dialog. | 283 // Help URL for the Autofill dialog. |
281 extern const char kAutofillHelpURL[]; | 284 extern const char kAutofillHelpURL[]; |
282 | 285 |
283 // Help URL for the Omnibox setting. | 286 // Help URL for the Omnibox setting. |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 #endif | 369 #endif |
367 | 370 |
368 #if defined(OS_CHROMEOS) | 371 #if defined(OS_CHROMEOS) |
369 // "Learn more" URL for the Cloud Print section under Options. | 372 // "Learn more" URL for the Cloud Print section under Options. |
370 extern const char kCloudPrintLearnMoreURL[]; | 373 extern const char kCloudPrintLearnMoreURL[]; |
371 #endif | 374 #endif |
372 | 375 |
373 } // namespace chrome | 376 } // namespace chrome |
374 | 377 |
375 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 378 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |