Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: content/common/content_constants.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: fix exports for switches, content_main Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698