| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ | 7 #ifndef IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ |
| 8 #define IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ | 8 #define IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ |
| 9 | 9 |
| 10 // TODO(blundell): This file should be ios_chrome_url_constants.*, and all of | 10 // TODO(blundell): This file should be ios_chrome_url_constants.*, and all of |
| 11 // these constants should have a kIOSChrome prefix instead of a kChrome | 11 // these constants should have a kIOSChrome prefix instead of a kChrome |
| 12 // prefix. crbug.com/537174 | 12 // prefix. crbug.com/537174 |
| 13 | 13 |
| 14 // chrome: URLs (including schemes). Should be kept in sync with the | 14 // chrome: URLs (including schemes). Should be kept in sync with the |
| 15 // components below. | 15 // components below. |
| 16 extern const char kChromeUINewTabURL[]; | 16 extern const char kChromeUINewTabURL[]; |
| 17 | 17 |
| 18 // URL components for Chrome on iOS. | 18 // URL components for Chrome on iOS. |
| 19 extern const char kChromeUIExternalFileHost[]; | 19 extern const char kChromeUIExternalFileHost[]; |
| 20 extern const char kChromeUINetExportHost[]; |
| 20 extern const char kChromeUIOmahaHost[]; | 21 extern const char kChromeUIOmahaHost[]; |
| 21 extern const char kChromeUISyncInternalsHost[]; | 22 extern const char kChromeUISyncInternalsHost[]; |
| 22 | 23 |
| 23 #endif // IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ | 24 #endif // IOS_CHROME_BROWSER_CHROME_URL_CONSTANTS_H_ |
| OLD | NEW |