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

Unified Diff: content/browser/browser_child_process_host.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 years, 3 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/browser_child_process_host.h
diff --git a/content/browser/browser_child_process_host.h b/content/browser/browser_child_process_host.h
index cc04b2a20a8e1bfd89ddfe3ad7a562fccf5e9645..bf5b881a6e0574c0e130fbde6b15d740074ba49f 100644
--- a/content/browser/browser_child_process_host.h
+++ b/content/browser/browser_child_process_host.h
@@ -11,15 +11,17 @@
#include "content/browser/child_process_launcher.h"
#include "content/common/child_process_host.h"
#include "content/common/child_process_info.h"
+#include "content/common/content_export.h"
// Plugins/workers and other child processes that live on the IO thread should
// derive from this class.
//
// [Browser]RenderProcessHost is the main exception that doesn't derive from
// this class. That project lives on the UI thread.
-class BrowserChildProcessHost : public ChildProcessHost,
- public ChildProcessInfo,
- public ChildProcessLauncher::Client {
+class CONTENT_EXPORT BrowserChildProcessHost :
+ public ChildProcessHost,
+ public ChildProcessInfo,
+ public ChildProcessLauncher::Client {
public:
virtual ~BrowserChildProcessHost();
@@ -31,7 +33,7 @@ class BrowserChildProcessHost : public ChildProcessHost,
// this should be done from the IO thread and that the iterator should not be
// kept around as it may be invalidated on subsequent event processing in the
// event loop.
- class Iterator {
+ class CONTENT_EXPORT Iterator {
public:
Iterator();
explicit Iterator(ChildProcessInfo::ProcessType type);

Powered by Google App Engine
This is Rietveld 408576698