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

Unified Diff: content/browser/plugin_service.h

Issue 8318028: Gracefully handle child process death in out-of-process plugin loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, use sync messages. Created 9 years, 2 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/plugin_service.h
diff --git a/content/browser/plugin_service.h b/content/browser/plugin_service.h
index b53bb5d65eff006b1339431593a406973c109f0d..a610f5631c4343cd0e6afdceae4fcaf5589b0aac 100644
--- a/content/browser/plugin_service.h
+++ b/content/browser/plugin_service.h
@@ -37,6 +37,7 @@
struct PepperPluginInfo;
class PluginDirWatcherDelegate;
+class PluginLoaderPosix;
namespace base {
class MessageLoopProxy;
@@ -257,6 +258,10 @@ class CONTENT_EXPORT PluginService
std::set<PluginProcessHost::Client*> pending_plugin_clients_;
+#if defined(OS_POSIX)
+ scoped_refptr<PluginLoaderPosix> plugin_loader_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(PluginService);
};

Powered by Google App Engine
This is Rietveld 408576698