Index: content/common/content_constants.h |
diff --git a/content/common/content_constants.h b/content/common/content_constants.h |
index 1c8b68043406d4186034ba1aef146f8353ed6dda..97674c2c430253c0854be892a2b378409f51bf06 100644 |
--- a/content/common/content_constants.h |
+++ b/content/common/content_constants.h |
@@ -8,6 +8,8 @@ |
#define CONTENT_COMMON_CHROME_CONSTANTS_H_ |
#pragma once |
+#include "content/common/content_export.h" |
darin (slow to review)
2011/09/04 15:41:04
nit: include system headers first
Dirk Pranke
2011/09/07 01:46:07
Done.
|
+ |
#include <stddef.h> // For size_t |
namespace content { |
@@ -28,12 +30,12 @@ extern const size_t kMaxTitleChars; |
// a data: URI may be legitimately massive, but the full URI would kill all |
// known operating systems if you dropped it into a UI control. |
extern const size_t kMaxURLChars; |
-extern const size_t kMaxURLDisplayChars; |
+CONTENT_EXPORT extern const size_t kMaxURLDisplayChars; |
// The render view and render process id associated with the default plugin |
// instance. |
-extern const char kDefaultPluginRenderViewId[]; |
-extern const char kDefaultPluginRenderProcessId[]; |
+CONTENT_EXPORT extern const char kDefaultPluginRenderViewId[]; |
+CONTENT_EXPORT extern const char kDefaultPluginRenderProcessId[]; |
} // namespace content |