OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "content/common/url_constants.h" | 12 #include "content/public/common/url_constants.h" |
13 | 13 |
14 namespace chrome { | 14 namespace chrome { |
15 | 15 |
16 // TODO(msw): Resolve chrome_frame dependency on these constants. | 16 // TODO(msw): Resolve chrome_frame dependency on these constants. |
17 extern const char kAboutPluginsURL[]; | 17 extern const char kAboutPluginsURL[]; |
18 extern const char kAboutVersionURL[]; | 18 extern const char kAboutVersionURL[]; |
19 | 19 |
20 // chrome: URLs (including schemes). Should be kept in sync with the | 20 // chrome: URLs (including schemes). Should be kept in sync with the |
21 // components below. | 21 // components below. |
22 extern const char kChromeUIAboutURL[]; | 22 extern const char kChromeUIAboutURL[]; |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 void RegisterChromeSchemes(); | 294 void RegisterChromeSchemes(); |
295 | 295 |
296 #if defined(OS_CHROMEOS) | 296 #if defined(OS_CHROMEOS) |
297 // "Learn more" URL for the Cloud Print section under Options. | 297 // "Learn more" URL for the Cloud Print section under Options. |
298 extern const char kCloudPrintLearnMoreURL[]; | 298 extern const char kCloudPrintLearnMoreURL[]; |
299 #endif | 299 #endif |
300 | 300 |
301 } // namespace chrome | 301 } // namespace chrome |
302 | 302 |
303 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 303 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |