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

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

Issue 1711533002: Decouple browser-specific GPU IPC messages from GPU service IPCs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Mark's nit Created 4 years, 10 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 bf1fa07948461ea02e5be36bc04d80fe0e2d82cb..3303653917656491bea0c1cc95fb5e3a83bea0a3 100644
--- a/content/browser/renderer_host/gpu_message_filter.cc
+++ b/content/browser/renderer_host/gpu_message_filter.cc
@@ -13,7 +13,7 @@
#include "content/browser/gpu/gpu_data_manager_impl.h"
#include "content/browser/gpu/gpu_process_host.h"
#include "content/common/child_process_host_impl.h"
-#include "content/common/gpu/gpu_messages.h"
+#include "content/common/gpu/gpu_browser_messages.h"
namespace content {
@@ -49,7 +49,7 @@ void GpuMessageFilter::OnEstablishGpuChannel(
#if defined(OS_WIN) && defined(ARCH_CPU_X86_64)
// TODO(jbauman): Remove this when we know why renderer processes are
// hanging on x86-64. https://crbug.com/577127
- if (!GpuDataManagerImpl::GetInstance()->CanUseGpuBrowserCompositor()) {
+ if (!GpuDataManagerImpl::GetInstance()->CanUseGpuCompositor()) {
reply->set_reply_error();
Send(reply.release());
return;

Powered by Google App Engine
This is Rietveld 408576698