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 // 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_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CONTENT_COMMON_CHROME_CONSTANTS_H_ |
8 #define CONTENT_COMMON_CHROME_CONSTANTS_H_ | 8 #define CONTENT_COMMON_CHROME_CONSTANTS_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 // a data: URI may be legitimately massive, but the full URI would kill all | 28 // a data: URI may be legitimately massive, but the full URI would kill all |
29 // known operating systems if you dropped it into a UI control. | 29 // known operating systems if you dropped it into a UI control. |
30 extern const size_t kMaxURLChars; | 30 extern const size_t kMaxURLChars; |
31 extern const size_t kMaxURLDisplayChars; | 31 extern const size_t kMaxURLDisplayChars; |
32 | 32 |
33 // The render view and render process id associated with the default plugin | 33 // The render view and render process id associated with the default plugin |
34 // instance. | 34 // instance. |
35 extern const char kDefaultPluginRenderViewId[]; | 35 extern const char kDefaultPluginRenderViewId[]; |
36 extern const char kDefaultPluginRenderProcessId[]; | 36 extern const char kDefaultPluginRenderProcessId[]; |
37 | 37 |
| 38 extern const char kStatsFilename[]; |
| 39 extern const int kStatsMaxThreads; |
| 40 extern const int kStatsMaxCounters; |
| 41 |
38 } // namespace content | 42 } // namespace content |
39 | 43 |
40 #endif // CONTENT_COMMON_CHROME_CONSTANTS_H_ | 44 #endif // CONTENT_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |