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

Side by Side Diff: content/common/gpu/gpu_messages.h

Issue 418733002: Prevent duplicate navigation to debug URLs from Telemetry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Read crash count from Browser System Info instead of scrubbing chrome://gpu page. Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) 176 IPC_STRUCT_TRAITS_MEMBER(gl_extensions)
177 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) 177 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor)
178 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) 178 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version)
179 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) 179 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions)
180 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) 180 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy)
181 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) 181 IPC_STRUCT_TRAITS_MEMBER(can_lose_context)
182 IPC_STRUCT_TRAITS_MEMBER(performance_stats) 182 IPC_STRUCT_TRAITS_MEMBER(performance_stats)
183 IPC_STRUCT_TRAITS_MEMBER(software_rendering) 183 IPC_STRUCT_TRAITS_MEMBER(software_rendering)
184 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) 184 IPC_STRUCT_TRAITS_MEMBER(direct_rendering)
185 IPC_STRUCT_TRAITS_MEMBER(sandboxed) 185 IPC_STRUCT_TRAITS_MEMBER(sandboxed)
186 IPC_STRUCT_TRAITS_MEMBER(process_crash_count)
186 #if defined(OS_WIN) 187 #if defined(OS_WIN)
187 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) 188 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics)
188 #endif 189 #endif
189 IPC_STRUCT_TRAITS_END() 190 IPC_STRUCT_TRAITS_END()
190 191
191 IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities) 192 IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities)
192 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) 193 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer)
193 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) 194 IPC_STRUCT_TRAITS_MEMBER(egl_image_external)
194 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) 195 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888)
195 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) 196 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1)
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 int32 /* bitstream_buffer_id */, 756 int32 /* bitstream_buffer_id */,
756 uint32 /* payload_size */, 757 uint32 /* payload_size */,
757 bool /* key_frame */) 758 bool /* key_frame */)
758 759
759 // Report error condition. 760 // Report error condition.
760 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, 761 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError,
761 media::VideoEncodeAccelerator::Error /* error */) 762 media::VideoEncodeAccelerator::Error /* error */)
762 763
763 // Send destroy request to the encoder. 764 // Send destroy request to the encoder.
764 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy) 765 IPC_MESSAGE_ROUTED0(AcceleratedVideoEncoderMsg_Destroy)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698