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 | 9 |
| 10 #include <stddef.h> |
| 11 |
10 #include <string> | 12 #include <string> |
11 #include <vector> | 13 #include <vector> |
12 | 14 |
13 #include "build/build_config.h" | 15 #include "build/build_config.h" |
14 #include "chrome/common/features.h" | 16 #include "chrome/common/features.h" |
15 #include "content/public/common/url_constants.h" | 17 #include "content/public/common/url_constants.h" |
16 | 18 |
17 namespace chrome { | 19 namespace chrome { |
18 | 20 |
19 // chrome: URLs (including schemes). Should be kept in sync with the | 21 // chrome: URLs (including schemes). Should be kept in sync with the |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 #endif | 569 #endif |
568 | 570 |
569 #if defined(OS_WIN) | 571 #if defined(OS_WIN) |
570 // The URL for the Windows XP/Vista deprecation help center article. | 572 // The URL for the Windows XP/Vista deprecation help center article. |
571 extern const char kWindowsXPVistaDeprecationURL[]; | 573 extern const char kWindowsXPVistaDeprecationURL[]; |
572 #endif | 574 #endif |
573 | 575 |
574 } // namespace chrome | 576 } // namespace chrome |
575 | 577 |
576 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 578 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |