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

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

Issue 2763493002: gpu: Use mojom API for recording log messages to the host. (Closed)
Patch Set: . Created 3 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 unified diff | Download patch
« no previous file with comments | « content/browser/gpu/gpu_process_host_ui_shim.cc ('k') | content/gpu/gpu_child_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "gpu/command_buffer/common/sync_token.h" 10 #include "gpu/command_buffer/common/sync_token.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 ::gpu::GpuFeatureInfo /* gpu_feature_info */) 63 ::gpu::GpuFeatureInfo /* gpu_feature_info */)
64 64
65 // Response from GPU to a GpuMsg_CreateGpuMemoryBuffer message. 65 // Response from GPU to a GpuMsg_CreateGpuMemoryBuffer message.
66 IPC_MESSAGE_CONTROL1(GpuHostMsg_GpuMemoryBufferCreated, 66 IPC_MESSAGE_CONTROL1(GpuHostMsg_GpuMemoryBufferCreated,
67 gfx::GpuMemoryBufferHandle /* handle */) 67 gfx::GpuMemoryBufferHandle /* handle */)
68 68
69 // Response from GPU to a GpuMsg_CollectGraphicsInfo. 69 // Response from GPU to a GpuMsg_CollectGraphicsInfo.
70 IPC_MESSAGE_CONTROL1(GpuHostMsg_GraphicsInfoCollected, 70 IPC_MESSAGE_CONTROL1(GpuHostMsg_GraphicsInfoCollected,
71 gpu::GPUInfo /* GPU logging stats */) 71 gpu::GPUInfo /* GPU logging stats */)
72 72
73 // Message from GPU to add a GPU log message to the about:gpu page.
74 IPC_MESSAGE_CONTROL3(GpuHostMsg_OnLogMessage,
75 int /*severity*/,
76 std::string /* header */,
77 std::string /* message */)
78
79 // Sent by the GPU process to indicate that a fields trial has been activated. 73 // Sent by the GPU process to indicate that a fields trial has been activated.
80 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */) 74 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */)
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_process_host_ui_shim.cc ('k') | content/gpu/gpu_child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698