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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 | 329 |
330 // The URL for the "Learn more" page on sync encryption. | 330 // The URL for the "Learn more" page on sync encryption. |
331 extern const char kSyncEncryptionHelpURL[]; | 331 extern const char kSyncEncryptionHelpURL[]; |
332 | 332 |
333 // The URL for the "Learn more" link when there is a sync error. | 333 // The URL for the "Learn more" link when there is a sync error. |
334 extern const char kSyncErrorsHelpURL[]; | 334 extern const char kSyncErrorsHelpURL[]; |
335 | 335 |
336 // The URL to create a new Google account via sync. | 336 // The URL to create a new Google account via sync. |
337 extern const char kSyncCreateNewAccountURL[]; | 337 extern const char kSyncCreateNewAccountURL[]; |
338 | 338 |
| 339 #if defined(OS_CHROMEOS) |
| 340 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 341 extern const char kNaturalScrollHelpURL[]; |
| 342 #endif |
| 343 |
339 // "Debug" pages which are dangerous and not for general consumption. | 344 // "Debug" pages which are dangerous and not for general consumption. |
340 extern const char* const kChromeDebugURLs[]; | 345 extern const char* const kChromeDebugURLs[]; |
341 extern int kNumberOfChromeDebugURLs; | 346 extern int kNumberOfChromeDebugURLs; |
342 | 347 |
343 // Canonical schemes you can use as input to GURL.SchemeIs(). | 348 // Canonical schemes you can use as input to GURL.SchemeIs(). |
344 extern const char kExtensionScheme[]; | 349 extern const char kExtensionScheme[]; |
345 #if defined(OS_CHROMEOS) | 350 #if defined(OS_CHROMEOS) |
346 extern const char kGDataScheme[]; | 351 extern const char kGDataScheme[]; |
347 #endif // defined(OS_CHROMEOS) | 352 #endif // defined(OS_CHROMEOS) |
348 | 353 |
349 #if defined(OS_CHROMEOS) | 354 #if defined(OS_CHROMEOS) |
350 // "Learn more" URL for the Cloud Print section under Options. | 355 // "Learn more" URL for the Cloud Print section under Options. |
351 extern const char kCloudPrintLearnMoreURL[]; | 356 extern const char kCloudPrintLearnMoreURL[]; |
352 #endif | 357 #endif |
353 | 358 |
354 } // namespace chrome | 359 } // namespace chrome |
355 | 360 |
356 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 361 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |