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

Unified Diff: content/browser/webui/web_ui.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/browser/webui/web_ui.h
diff --git a/content/browser/webui/web_ui.h b/content/browser/webui/web_ui.h
index fef18ecc34ecab5533f551bad80eb3a4d94cf59a..b3059848a5ad49471a3db6e55700b214975d9e1f 100644
--- a/content/browser/webui/web_ui.h
+++ b/content/browser/webui/web_ui.h
@@ -14,6 +14,7 @@
#include "base/compiler_specific.h"
#include "base/string16.h"
#include "content/common/page_transition_types.h"
+#include "content/common/content_export.h"
darin (slow to review) 2011/09/04 15:41:04 nit: "page" after "content"
Dirk Pranke 2011/09/07 01:46:07 Done.
#include "ipc/ipc_channel.h"
class WebUIMessageHandler;
@@ -32,7 +33,7 @@ class Value;
//
// NOTE: If you're creating a new WebUI for Chrome code, make sure you extend
// ChromeWebUI.
-class WebUI : public IPC::Channel::Listener {
+class CONTENT_EXPORT WebUI : public IPC::Channel::Listener {
public:
explicit WebUI(TabContents* contents);
virtual ~WebUI();
@@ -196,7 +197,7 @@ class WebUI : public IPC::Channel::Listener {
// Messages sent from the DOM are forwarded via the WebUI to handler
// classes. These objects are owned by WebUI and destroyed when the
// host is destroyed.
-class WebUIMessageHandler {
+class CONTENT_EXPORT WebUIMessageHandler {
public:
WebUIMessageHandler();
virtual ~WebUIMessageHandler();

Powered by Google App Engine
This is Rietveld 408576698