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

Unified Diff: cc/surfaces/display.h

Issue 485043003: cc: Use correct message loop proxy in BlockingTaskRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Help gn deal with it. Created 6 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: cc/surfaces/display.h
diff --git a/cc/surfaces/display.h b/cc/surfaces/display.h
index 57d6af4cd24e81994fceac8fabeb7e0d5ce31cf4..c79e5908226876b0c85c22aa6c55e8beafb204cd 100644
--- a/cc/surfaces/display.h
+++ b/cc/surfaces/display.h
@@ -5,6 +5,8 @@
#ifndef CC_SURFACES_DISPLAY_H_
#define CC_SURFACES_DISPLAY_H_
+#include <set>
+
#include "base/memory/scoped_ptr.h"
#include "cc/output/output_surface_client.h"
#include "cc/output/renderer.h"
@@ -20,6 +22,7 @@ class Size;
namespace cc {
+class BlockingTaskRunner;
class DirectRenderer;
class DisplayClient;
class OutputSurface;
@@ -88,6 +91,7 @@ class CC_SURFACES_EXPORT Display : public OutputSurfaceClient,
scoped_ptr<ResourceProvider> resource_provider_;
scoped_ptr<SurfaceAggregator> aggregator_;
scoped_ptr<DirectRenderer> renderer_;
+ scoped_refptr<BlockingTaskRunner> blocking_main_thread_task_runner_;
DISALLOW_COPY_AND_ASSIGN(Display);
};

Powered by Google App Engine
This is Rietveld 408576698