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

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

Issue 6673003: Move GPU messages to content. I've also switched the IPC structs to use the ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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
« no previous file with comments | « content/browser/gpu_process_host.cc ('k') | content/common/common_param_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/gpu_message_filter.cc
===================================================================
--- content/browser/renderer_host/gpu_message_filter.cc (revision 77652)
+++ content/browser/renderer_host/gpu_message_filter.cc (working copy)
@@ -10,10 +10,9 @@
#include "base/callback.h"
#include "chrome/browser/gpu_process_host_ui_shim.h"
-#include "chrome/common/gpu_create_command_buffer_config.h"
-#include "chrome/common/gpu_messages.h"
#include "chrome/common/render_messages.h"
#include "content/browser/gpu_process_host.h"
+#include "content/common/gpu_messages.h"
GpuMessageFilter::GpuMessageFilter(int render_process_id)
: gpu_host_id_(0),
@@ -92,10 +91,8 @@
#endif
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- ViewMsg_GpuChannelEstablished* reply =
- new ViewMsg_GpuChannelEstablished(channel,
- renderer_process_for_gpu,
- gpu_info);
+ IPC::Message* reply = new GpuMsg_GpuChannelEstablished(
+ channel, renderer_process_for_gpu, gpu_info);
// If the renderer process is performing synchronous initialization,
// it needs to handle this message before receiving the reply for
« no previous file with comments | « content/browser/gpu_process_host.cc ('k') | content/common/common_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698