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

Side by Side Diff: gpu/command_buffer/common/mojo.typemap

Issue 1821073002: Mojo bindings: Fix typemap includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 { 5 {
6 "c++": { 6 "c++": {
7 "gpu.mojom.Capabilities": { 7 "gpu.mojom.Capabilities": {
8 "typename": "gpu::Capabilities", 8 "typename": "gpu::Capabilities",
9 "headers": [ 9 "public_headers": [
10 "gpu/command_buffer/common/capabilities.h", 10 "gpu/command_buffer/common/capabilities.h"
11 ],
12 "traits_headers": [
11 "gpu/ipc/common/gpu_command_buffer_traits.h" 13 "gpu/ipc/common/gpu_command_buffer_traits.h"
12 ] 14 ]
13 }, 15 },
14 "gpu.mojom.CommandBufferState": { 16 "gpu.mojom.CommandBufferState": {
15 "typename": "gpu::CommandBuffer::State", 17 "typename": "gpu::CommandBuffer::State",
16 "headers": [ 18 "public_headers": [
17 "gpu/command_buffer/common/command_buffer.h", 19 "gpu/command_buffer/common/command_buffer.h"
20 ],
21 "traits_headers": [
18 "gpu/ipc/common/gpu_command_buffer_traits.h" 22 "gpu/ipc/common/gpu_command_buffer_traits.h"
19 ] 23 ]
20 }, 24 },
21 "gpu.mojom.Mailbox": { 25 "gpu.mojom.Mailbox": {
22 "typename": "gpu::Mailbox", 26 "typename": "gpu::Mailbox",
23 "headers": [ 27 "public_headers": [
24 "gpu/command_buffer/common/mailbox.h", 28 "gpu/command_buffer/common/mailbox.h"
29 ],
30 "traits_headers": [
25 "gpu/ipc/common/gpu_command_buffer_traits.h" 31 "gpu/ipc/common/gpu_command_buffer_traits.h"
26 ] 32 ]
27 }, 33 },
28 "gpu.mojom.MailboxHolder": { 34 "gpu.mojom.MailboxHolder": {
29 "typename": "gpu::MailboxHolder", 35 "typename": "gpu::MailboxHolder",
30 "headers": [ 36 "public_headers": [
31 "gpu/command_buffer/common/mailbox_holder.h", 37 "gpu/command_buffer/common/mailbox_holder.h"
38 ],
39 "traits_headers": [
32 "gpu/ipc/common/gpu_command_buffer_traits.h" 40 "gpu/ipc/common/gpu_command_buffer_traits.h"
33 ] 41 ]
34 }, 42 },
35 "gpu.mojom.SyncToken": { 43 "gpu.mojom.SyncToken": {
36 "typename": "gpu::SyncToken", 44 "typename": "gpu::SyncToken",
37 "headers": [ 45 "public_headers": [
38 "gpu/command_buffer/common/sync_token.h", 46 "gpu/command_buffer/common/sync_token.h"
47 ],
48 "traits_headers": [
39 "gpu/ipc/common/gpu_command_buffer_traits.h" 49 "gpu/ipc/common/gpu_command_buffer_traits.h"
40 ] 50 ]
41 }, 51 },
42 "gpu.mojom.ValueState": { 52 "gpu.mojom.ValueState": {
43 "typename": "gpu::ValueState", 53 "typename": "gpu::ValueState",
44 "headers": [ 54 "public_headers": [
45 "gpu/command_buffer/common/value_state.h", 55 "gpu/command_buffer/common/value_state.h"
56 ],
57 "traits_headers": [
46 "gpu/ipc/common/gpu_command_buffer_traits.h" 58 "gpu/ipc/common/gpu_command_buffer_traits.h"
47 ] 59 ]
48 } 60 }
49 } 61 }
50 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698