| 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_PUBLIC_COMMON_CHROME_CONSTANTS_H_ |
| 8 #define CONTENT_COMMON_CHROME_CONSTANTS_H_ | 8 #define CONTENT_PUBLIC_COMMON_CHROME_CONSTANTS_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include <stddef.h> // For size_t | 11 #include <stddef.h> // For size_t |
| 12 | 12 |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 CONTENT_EXPORT extern const unsigned int kMaxRendererProcessCount; | 17 CONTENT_EXPORT extern const unsigned int kMaxRendererProcessCount; |
| 18 | 18 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 36 // instance. | 36 // instance. |
| 37 CONTENT_EXPORT extern const char kDefaultPluginRenderViewId[]; | 37 CONTENT_EXPORT extern const char kDefaultPluginRenderViewId[]; |
| 38 CONTENT_EXPORT extern const char kDefaultPluginRenderProcessId[]; | 38 CONTENT_EXPORT extern const char kDefaultPluginRenderProcessId[]; |
| 39 | 39 |
| 40 extern const char kStatsFilename[]; | 40 extern const char kStatsFilename[]; |
| 41 extern const int kStatsMaxThreads; | 41 extern const int kStatsMaxThreads; |
| 42 extern const int kStatsMaxCounters; | 42 extern const int kStatsMaxCounters; |
| 43 | 43 |
| 44 } // namespace content | 44 } // namespace content |
| 45 | 45 |
| 46 #endif // CONTENT_COMMON_CHROME_CONSTANTS_H_ | 46 #endif // CONTENT_PUBLIC_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |