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

Unified Diff: content/renderer/render_thread_impl.h

Issue 8341107: Change RenderThread to use ScopedCOMInitializer to initialize COM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
« no previous file with comments | « no previous file | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.h
===================================================================
--- content/renderer/render_thread_impl.h (revision 107682)
+++ content/renderer/render_thread_impl.h (working copy)
@@ -56,7 +56,10 @@
namespace base {
class MessageLoopProxy;
class Thread;
+namespace win {
+class ScopedCOMInitializer;
}
+}
namespace content {
class RenderProcessObserver;
@@ -210,6 +213,9 @@
// Used on multiple script execution context threads.
scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_;
+ // Initialize COM when using plugins outside the sandbox (Windows only).
+ scoped_ptr<base::win::ScopedCOMInitializer> initialize_com_;
+
// If true, then a GetPlugins call is allowed to rescan the disk.
bool plugin_refresh_allowed_;
« no previous file with comments | « no previous file | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698