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