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

Unified Diff: content/renderer/render_thread_impl.h

Issue 236313006: cc: Add initial GPU-to-GPU copy rasterizer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review feedback Created 6 years, 8 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/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index 4c945b1f971141ac37b3affc4fb0318dd6c390b6..de75085decd21fbb210b62b162153f124434c865 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -218,6 +218,8 @@ class CONTENT_EXPORT RenderThreadImpl : public RenderThread,
bool is_map_image_enabled() const { return is_map_image_enabled_; }
+ bool is_zero_copy_enabled() const { return is_zero_copy_enabled_; }
+
AppCacheDispatcher* appcache_dispatcher() const {
return appcache_dispatcher_.get();
}
@@ -541,6 +543,7 @@ class CONTENT_EXPORT RenderThreadImpl : public RenderThread,
bool is_low_res_tiling_enabled_;
bool is_lcd_text_enabled_;
bool is_map_image_enabled_;
+ bool is_zero_copy_enabled_;
DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
};

Powered by Google App Engine
This is Rietveld 408576698