| OLD | NEW |
| 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 Loading... |
| 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 */) |
| OLD | NEW |