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

Unified Diff: content/common/content_client.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_client.h
diff --git a/content/common/content_client.h b/content/common/content_client.h
index dc2d79014a95afc9c2f42d850c8b9b4699ca52ec..9f5521fee2c54382832cb8e7cd9067f3e89bbc33 100644
--- a/content/common/content_client.h
+++ b/content/common/content_client.h
@@ -12,6 +12,7 @@
#include "base/basictypes.h"
#include "base/string16.h"
#include "build/build_config.h"
+#include "content/common/content_export.h"
class CommandLine;
class GURL;
@@ -40,11 +41,11 @@ class ContentUtilityClient;
// Setter and getter for the client. The client should be set early, before any
// content code is called.
-void SetContentClient(ContentClient* client);
-ContentClient* GetContentClient();
+CONTENT_EXPORT void SetContentClient(ContentClient* client);
+CONTENT_EXPORT ContentClient* GetContentClient();
// Interface that the embedder implements.
-class ContentClient {
+class CONTENT_EXPORT ContentClient {
public:
ContentClient();
virtual ~ContentClient();

Powered by Google App Engine
This is Rietveld 408576698