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 // A handful of resource-like constants related to the Content application. | 5 // A handful of resource-like constants related to the Content application. |
6 | 6 |
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
8 #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
9 #pragma once | |
10 | 9 |
11 #include <stddef.h> // For size_t | 10 #include <stddef.h> // For size_t |
12 | 11 |
13 #include "base/file_path.h" | 12 #include "base/file_path.h" |
14 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
15 | 14 |
16 namespace content { | 15 namespace content { |
17 | 16 |
18 // The name of the directory under BrowserContext::GetPath where the AppCache is | 17 // The name of the directory under BrowserContext::GetPath where the AppCache is |
19 // put. | 18 // put. |
(...skipping 23 matching lines...) Expand all Loading... |
43 CONTENT_EXPORT extern const size_t kMaxURLChars; | 42 CONTENT_EXPORT extern const size_t kMaxURLChars; |
44 CONTENT_EXPORT extern const size_t kMaxURLDisplayChars; | 43 CONTENT_EXPORT extern const size_t kMaxURLDisplayChars; |
45 | 44 |
46 extern const char kStatsFilename[]; | 45 extern const char kStatsFilename[]; |
47 extern const int kStatsMaxThreads; | 46 extern const int kStatsMaxThreads; |
48 extern const int kStatsMaxCounters; | 47 extern const int kStatsMaxCounters; |
49 | 48 |
50 } // namespace content | 49 } // namespace content |
51 | 50 |
52 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 51 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
OLD | NEW |