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

Unified Diff: content/common/gpu_host_messages.h

Issue 2654993004: Move GPU blacklist calculation to GPU proc (Closed)
Patch Set: Feedback + add rest of logic back in Created 3 years, 11 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/common/gpu_host_messages.h
diff --git a/content/common/gpu_host_messages.h b/content/common/gpu_host_messages.h
index ae6f0bb5e4e3cfa95ee6923d4c9d7851de089983..5a0ab26185c981ae60599d2e50100e48dc68e322 100644
--- a/content/common/gpu_host_messages.h
+++ b/content/common/gpu_host_messages.h
@@ -10,6 +10,7 @@
#include "content/common/establish_channel_params.h"
#include "gpu/command_buffer/common/sync_token.h"
#include "gpu/command_buffer/service/gpu_preferences.h"
+#include "gpu/config/gpu_feature_info.h"
#include "gpu/config/gpu_info.h"
#include "gpu/ipc/common/gpu_command_buffer_traits.h"
#include "gpu/ipc/common/gpu_param_traits.h"
@@ -164,9 +165,10 @@ IPC_MESSAGE_CONTROL0(GpuMsg_GpuSwitched)
// These are messages to the browser.
// Response from GPU to a GputMsg_Initialize message.
-IPC_MESSAGE_CONTROL2(GpuHostMsg_Initialized,
+IPC_MESSAGE_CONTROL3(GpuHostMsg_Initialized,
bool /* result */,
- ::gpu::GPUInfo /* gpu_info */)
+ ::gpu::GPUInfo /* gpu_info */,
+ ::gpu::GpuFeatureInfo /* gpu_feature_info */)
// Response from GPU to a GpuHostMsg_EstablishChannel message.
IPC_MESSAGE_CONTROL1(GpuHostMsg_ChannelEstablished,

Powered by Google App Engine
This is Rietveld 408576698