| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 | 9 |
| 10 namespace chrome { | 10 namespace chrome { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 extern const char kAboutCacheURL[]; | 33 extern const char kAboutCacheURL[]; |
| 34 extern const char kAboutMemoryURL[]; | 34 extern const char kAboutMemoryURL[]; |
| 35 | 35 |
| 36 // chrome-ui: URLs (including schemes). | 36 // chrome-ui: URLs (including schemes). |
| 37 extern const char kChromeUIIPCURL[]; | 37 extern const char kChromeUIIPCURL[]; |
| 38 extern const char kChromeUINetworkURL[]; | 38 extern const char kChromeUINetworkURL[]; |
| 39 extern const char kChromeUINewTabURL[]; | 39 extern const char kChromeUINewTabURL[]; |
| 40 | 40 |
| 41 // chrome-ui components of URLs. | 41 // chrome-ui components of URLs. |
| 42 extern const char kNewTabHost[]; | 42 extern const char kNewTabHost[]; |
| 43 extern const char kDevToolsHost[]; |
| 43 | 44 |
| 44 } // namespace chrome | 45 } // namespace chrome |
| 45 | 46 |
| 46 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 47 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |