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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 10501006: Connect up flash blacklist entries to GetSettingInt (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clarify comments Created 8 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/c/private/ppb_flash.h ('k') | ppapi/proxy/ppb_flash_proxy.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 (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 header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 IPC_STRUCT_TRAITS_MEMBER(clip_rect) 125 IPC_STRUCT_TRAITS_MEMBER(clip_rect)
126 IPC_STRUCT_TRAITS_END() 126 IPC_STRUCT_TRAITS_END()
127 127
128 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences) 128 IPC_STRUCT_TRAITS_BEGIN(ppapi::Preferences)
129 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) 129 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
130 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) 130 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
131 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) 131 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
132 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) 132 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
133 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 133 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
134 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 134 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
135 IPC_STRUCT_TRAITS_MEMBER(is_3d_supported)
136 IPC_STRUCT_TRAITS_MEMBER(is_stage3d_supported)
135 IPC_STRUCT_TRAITS_END() 137 IPC_STRUCT_TRAITS_END()
136 138
137 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) 139 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData)
138 IPC_STRUCT_TRAITS_MEMBER(is_filtered) 140 IPC_STRUCT_TRAITS_MEMBER(is_filtered)
139 IPC_STRUCT_TRAITS_MEMBER(event_type) 141 IPC_STRUCT_TRAITS_MEMBER(event_type)
140 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) 142 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp)
141 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) 143 IPC_STRUCT_TRAITS_MEMBER(event_modifiers)
142 IPC_STRUCT_TRAITS_MEMBER(mouse_button) 144 IPC_STRUCT_TRAITS_MEMBER(mouse_button)
143 IPC_STRUCT_TRAITS_MEMBER(mouse_position) 145 IPC_STRUCT_TRAITS_MEMBER(mouse_position)
144 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) 146 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count)
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 // PPB_X509Certificate_Private 1341 // PPB_X509Certificate_Private
1340 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1342 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1341 std::vector<char> /* der */, 1343 std::vector<char> /* der */,
1342 bool /* succeeded */, 1344 bool /* succeeded */,
1343 ppapi::PPB_X509Certificate_Fields /* result */) 1345 ppapi::PPB_X509Certificate_Fields /* result */)
1344 1346
1345 // PPB_Font. 1347 // PPB_Font.
1346 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1348 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1347 std::string /* result */) 1349 std::string /* result */)
1348 #endif // !defined(OS_NACL) 1350 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_flash.h ('k') | ppapi/proxy/ppb_flash_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698