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

Unified Diff: content/browser/renderer_host/gpu_message_filter.cc

Issue 10735010: 3D Compositing in <browser>, first draft. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Major changes to clean up deadlock & other issues Created 8 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: content/browser/renderer_host/gpu_message_filter.cc
diff --git a/content/browser/renderer_host/gpu_message_filter.cc b/content/browser/renderer_host/gpu_message_filter.cc
index 6a06d0af6d193dac9166e7b0f710acfa2b30d95d..6aef7d46991e504404e72b83bb0b4149b4bfe57f 100644
--- a/content/browser/renderer_host/gpu_message_filter.cc
+++ b/content/browser/renderer_host/gpu_message_filter.cc
@@ -42,11 +42,9 @@ GpuMessageFilter::GpuMessageFilter(int render_process_id,
weak_ptr_factory_(this) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
-#if defined(USE_AURA) || defined(OS_ANDROID)
// We use the GPU process for UI on Aura, and we need to share renderer GL
// contexts with the compositor context.
scshunt 2012/08/12 01:42:45 Update this comment
share_contexts_ = true;
-#endif
}
GpuMessageFilter::~GpuMessageFilter() {

Powered by Google App Engine
This is Rietveld 408576698