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

Unified Diff: content/browser/renderer_host/render_message_filter.h

Issue 100053005: Allow AllocateGpuMemoryBuffer to be called from multiple threads. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_message_filter.h
diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h
index 764bf31259bf69345bcbbbfe6fe3e664d7774901..ff370077b4afe42a72f40a7b52c788e4a2127029 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -9,6 +9,10 @@
#include <windows.h>
#endif
+#if defined(OS_MACOSX)
+#include <queue>
+#endif
+
#include <set>
#include <string>
#include <vector>
@@ -306,7 +310,7 @@ class RenderMessageFilter : public BrowserMessageFilter {
MediaInternals* media_internals_;
#if defined(OS_MACOSX)
- base::ScopedCFTypeRef<CFTypeRef> last_io_surface_;
+ std::queue<base::ScopedCFTypeRef<CFTypeRef> > io_surfaces_;
#endif
DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter);
« no previous file with comments | « no previous file | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698