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

Side by Side Diff: content/common/gpu_host_messages.h

Issue 2034933002: Make field trials activated in the GPU process be reflected in browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a unit test for child_process_field_trial_syncer.cc Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/common/establish_channel_params.h" 10 #include "content/common/establish_channel_params.h"
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 244
245 // Tells the browser about GPU memory usage statistics for UMA logging. 245 // Tells the browser about GPU memory usage statistics for UMA logging.
246 IPC_MESSAGE_CONTROL1(GpuHostMsg_GpuMemoryUmaStats, 246 IPC_MESSAGE_CONTROL1(GpuHostMsg_GpuMemoryUmaStats,
247 gpu::GPUMemoryUmaStats /* GPU memory UMA stats */) 247 gpu::GPUMemoryUmaStats /* GPU memory UMA stats */)
248 248
249 // Message from GPU to add a GPU log message to the about:gpu page. 249 // Message from GPU to add a GPU log message to the about:gpu page.
250 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage, 250 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage,
251 int /*severity*/, 251 int /*severity*/,
252 std::string /* header */, 252 std::string /* header */,
253 std::string /* message */) 253 std::string /* message */)
254
255 // Sent by the GPU process to indicate that a fields trial has been activated.
256 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698