Chromium Code Reviews| 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 21 matching lines...) Expand all Loading... | |
| 32 extern const char kChromeUIDownloadsURL[]; | 32 extern const char kChromeUIDownloadsURL[]; |
| 33 extern const char kChromeUIEditSearchEngineDialogURL[]; | 33 extern const char kChromeUIEditSearchEngineDialogURL[]; |
| 34 extern const char kChromeUIExtensionActivityURL[]; | 34 extern const char kChromeUIExtensionActivityURL[]; |
| 35 extern const char kChromeUIExtensionIconURL[]; | 35 extern const char kChromeUIExtensionIconURL[]; |
| 36 extern const char kChromeUIExtensionsFrameURL[]; | 36 extern const char kChromeUIExtensionsFrameURL[]; |
| 37 extern const char kChromeUIExtensionsURL[]; | 37 extern const char kChromeUIExtensionsURL[]; |
| 38 extern const char kChromeUIFaviconURL[]; | 38 extern const char kChromeUIFaviconURL[]; |
| 39 extern const char kChromeUIFeedbackURL[]; | 39 extern const char kChromeUIFeedbackURL[]; |
| 40 extern const char kChromeUIFlagsURL[]; | 40 extern const char kChromeUIFlagsURL[]; |
| 41 extern const char kChromeUIFlashURL[]; | 41 extern const char kChromeUIFlashURL[]; |
| 42 extern const char kChromeUIGestureConfigURL[]; | |
| 43 extern const char kChromeUIGestureConfigHost[]; | |
|
flackr
2012/06/06 14:50:54
The Host variables are defined in a separate block
Kevin Greer
2012/06/07 19:07:00
Moved to AURA block.
On 2012/06/06 14:50:54, flack
| |
| 42 extern const char kChromeUIHelpFrameURL[]; | 44 extern const char kChromeUIHelpFrameURL[]; |
| 43 extern const char kChromeUIHistoryURL[]; | 45 extern const char kChromeUIHistoryURL[]; |
| 44 extern const char kChromeUIHistoryFrameURL[]; | 46 extern const char kChromeUIHistoryFrameURL[]; |
| 45 extern const char kChromeUIInputWindowDialogURL[]; | 47 extern const char kChromeUIInputWindowDialogURL[]; |
| 46 extern const char kChromeUIInspectURL[]; | 48 extern const char kChromeUIInspectURL[]; |
| 47 extern const char kChromeUIIPCURL[]; | 49 extern const char kChromeUIIPCURL[]; |
| 48 extern const char kChromeUIKeyboardURL[]; | 50 extern const char kChromeUIKeyboardURL[]; |
| 49 extern const char kChromeUIMemoryRedirectURL[]; | 51 extern const char kChromeUIMemoryRedirectURL[]; |
| 50 extern const char kChromeUIMemoryURL[]; | 52 extern const char kChromeUIMemoryURL[]; |
| 51 extern const char kChromeUINetInternalsURL[]; | 53 extern const char kChromeUINetInternalsURL[]; |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 369 #endif | 371 #endif |
| 370 | 372 |
| 371 #if defined(OS_CHROMEOS) | 373 #if defined(OS_CHROMEOS) |
| 372 // "Learn more" URL for the Cloud Print section under Options. | 374 // "Learn more" URL for the Cloud Print section under Options. |
| 373 extern const char kCloudPrintLearnMoreURL[]; | 375 extern const char kCloudPrintLearnMoreURL[]; |
| 374 #endif | 376 #endif |
| 375 | 377 |
| 376 } // namespace chrome | 378 } // namespace chrome |
| 377 | 379 |
| 378 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 380 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |