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

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed)

Created:
9 years ago by Wez
Modified:
8 years, 11 months ago
CC:
chromium-reviews, hclam+watch_chromium.org, ddorwin+watch_chromium.org, fischman+watch_chromium.org, acolwell+watch_chromium.org, annacc+watch_chromium.org, yzshen+watch_chromium.org, darin-cc_chromium.org, dcheng, Paweł Hajdan Jr., vrk (LEFT CHROMIUM), piman+watch_chromium.org, scherkus (not reviewing), ihf+watch_chromium.org
Visibility:
Public.

Description

Update PPAPI IDL generator to define versioned structs, and unversioned typedef. For interface Foo with versions A and B, structs will be defined for Foo_A and Foo_B, and a typedef generated from Foo_B to Foo. Versioning of IDL structs remains unchanged. (Follow-up to discussion on CL 8931019) *** This change breaks compatibility with C code that makes use of unversioned-named interface structs. :( *** We need to define a versioned-named struct for each interface's current version. We could: 1. Carry on defining the current struct unversioned and typedef a versioned name for it. The versioned type for the interface would be a typedef for the latest version and a struct for later versions, causing calling C code that uses it to break when a new version is added. 2. Define structs for all versions, and a separate unversioned struct. This would lose type equivalence between the versioned and unversioned copies of the latest interface specification, and lead to needless duplication, especially for one-version interfaces. 3. Do this CL. We break some C code once, by change the unversioned type from struct to typedef, but we avoid these headaches in future. C++ code shouldn't be affected. *** Contents of this CL, including notes on to-dos: This change requires updating thunk-getters to be defined using versioned names, so that the interface structs can be forward declared; the thunk-getters now have versioned names and return values. Changing the thunk-getter naming requires updating unit-tests to call the versioned names. It also requires some interface headers not generated from IDL to be manually updated to the new scheme (PPB_CharSet_Dev, PPB_Crypto_Dev, PPB_DirectoryReader_Dev, PPB_LayerCompositor_Dev, PPB_Graphics3D, PPB_Flash_Menu, PPB_Instance_Private, PPP_Pdf, PPB_Flash_NetConnector, PPB_GLESChromiumTextureMapping_Dev and PPB_Graphics3D_Trusted). The proxy GetInfo() calls are updated to use versioned interface macros and thunks. Similarly, most PPBs added in interface_list.cc are now added using versioned interface macros and thunk getters. Ditto PluginModule, and some of PluginInstance. Some implementations (e.g. PPB_CharSet_Dev) needed updating to use versioned thunk getters to fetch interfaces to use. The VideoDecoder interface size checks are for 32-bit are updated not to expect structs. It was necessary to replace forward declarations of interface structs with includes, and remove "struct" prefixes where unversioned names were used. In most cases the affected code should really be updated to cope with versions. PPP_Pdf has become PPP_Pdf_1. Other versionless structs that should be updated for consistenct include PPB_UMA_Private, PPB_GPU_Blacklist_Private, PPB_Proxy_Private, PPP_PDF, PPB_OpenGLES2, PPB_Flash_File_FileRef and PPB_Flash_File_ModuleLocal. Also PPP_Class_Deprecated, PPP_CursorControl_Dev, PPP_Find_Dev, PPP_NetworkState_Dev, PPP_Scrollbar_Dev, PPP_Selection_Dev, PPP_VideoCapture_Dev, PPP_Graphics3D and PPP_Instance_Private. The Graphics2D and GLES2 examples now use unversioned interface type names without "struct" prefix. It's not clear whether examples should use versioned names, to show best practice, or unversioned. The typedef hack in PPP_Instance IDL is gone. Yay. BUG=107398, 108379 TEST=All Pepper and NaCl tests should continue to pass on Chromium bots. NaCl SDK examples build correctly. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=116490

Patch Set 1 #

Patch Set 2 : Rebase, lather, repeat. #

Patch Set 3 : Rebase, and regenerate PPB_Flash again. #

Patch Set 4 : Fix some missed bits. #

Patch Set 5 : Fix ppapi/tests/ forward declares to includes. #

Total comments: 5

Patch Set 6 : Address comments. #

Patch Set 7 : Fix code under ppapi/native_client/tests/. #

Patch Set 8 : Fix up failing NaCl tests. #

Patch Set 9 : Rebase. #

Patch Set 10 : Rebase une autre fois. #

Total comments: 1

Patch Set 11 : Try disabling earth tests by correct names. #

Patch Set 12 : Update native_client_sdk/.../hello_world_c example for definition changes. #

Total comments: 2

Patch Set 13 : Rebase for luck. #

Patch Set 14 : git status #

Patch Set 15 : Rebase for the road. #

Patch Set 16 : Rebase for kicks (and across a whitespace change). #

Patch Set 17 : Fix PPB_View IDL's Copyright year. #

Patch Set 18 : Fix some more Copyright years... #

Patch Set 19 : Really fix that license text this time. #

Patch Set 20 : Rebase for line-wrap. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+812 lines, -720 lines) Patch
M native_client_sdk/src/examples/hello_world_c/hello_world_c.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 5 chunks +7 lines, -7 lines 0 comments Download
M ppapi/api/dev/pp_cursor_type_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/pp_video_capture_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/pp_video_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_audio_input_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_buffer_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_console_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_cursor_control_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_file_chooser_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_find_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_font_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_fullscreen_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_ime_input_event_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_memory_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_scrollbar_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_testing_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_text_input_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_transport_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_url_util_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_var_array_buffer_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_video_capture_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_video_decoder_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_video_layer_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_websocket_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_widget_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppb_zoom_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppp_printing_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppp_video_decoder_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppp_widget_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/dev/ppp_zoom_dev.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_bool.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_completion_callback.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_errors.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_file_info.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_graphics_3d.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_input_event.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_instance.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_macros.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_module.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_point.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_rect.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_resource.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_size.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_stdint.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_time.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/pp_var.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_audio.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_audio_config.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_core.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_file_io.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_file_ref.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_file_system.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_fullscreen.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_graphics_2d.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_image_data.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_input_event.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_instance.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_messaging.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_mouse_lock.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_url_loader.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_url_request_info.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_url_response_info.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_var.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppb_view.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppp.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppp_input_event.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppp_instance.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +1 line, -8 lines 0 comments Download
M ppapi/api/ppp_messaging.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/ppp_mouse_lock.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/finish_writing_these/ppb_flash_file.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/finish_writing_these/ppb_flash_menu.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/finish_writing_these/ppb_nacl_private.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/finish_writing_these/ppb_pdf.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/finish_writing_these/ppb_proxy_private.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_file_ref_private.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_flash.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_flash_clipboard.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_flash_fullscreen.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_flash_tcp_socket.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_flash_udp_socket.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_tcp_socket_private.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/private/ppb_udp_socket_private.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppb_audio_trusted.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppb_broker_trusted.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppb_buffer_trusted.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppb_file_io_trusted.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppb_image_data_trusted.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppb_url_loader_trusted.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/api/trusted/ppp_broker.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/dev/pp_video_capture_dev.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/dev/pp_video_dev.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/dev/ppb_audio_input_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_buffer_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_char_set_dev.h View 2 chunks +3 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_console_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_crypto_dev.h View 2 chunks +3 lines, -1 line 0 comments Download
M ppapi/c/dev/ppb_cursor_control_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_directory_reader_dev.h View 2 chunks +3 lines, -1 line 0 comments Download
M ppapi/c/dev/ppb_file_chooser_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_find_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_font_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_fullscreen_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h View 1 2 3 4 5 2 chunks +4 lines, -1 line 0 comments Download
M ppapi/c/dev/ppb_ime_input_event_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_layer_compositor_dev.h View 2 chunks +3 lines, -1 line 0 comments Download
M ppapi/c/dev/ppb_memory_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_scrollbar_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_testing_dev.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_text_input_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_transport_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_url_util_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_var_array_buffer_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_video_capture_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_video_decoder_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_video_layer_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_websocket_dev.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_widget_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppb_zoom_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppp_printing_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppp_video_decoder_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppp_widget_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/dev/ppp_zoom_dev.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/pp_completion_callback.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/pp_file_info.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/pp_input_event.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/pp_point.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/pp_rect.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/pp_size.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/pp_var.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/c/ppb_audio.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_audio_config.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_core.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_file_io.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_file_ref.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_file_system.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_fullscreen.h View 1 2 3 4 5 6 7 8 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_graphics_2d.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_graphics_3d.h View 2 chunks +3 lines, -1 line 0 comments Download
M ppapi/c/ppb_image_data.h View 1 2 3 4 5 6 7 8 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_input_event.h View 7 chunks +13 lines, -5 lines 0 comments Download
M ppapi/c/ppb_instance.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_messaging.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_mouse_lock.h View 1 2 3 4 5 6 7 8 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_url_loader.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_url_request_info.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_url_response_info.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_var.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppb_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppp_input_event.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppp_instance.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +4 lines, -5 lines 0 comments Download
M ppapi/c/ppp_messaging.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/ppp_mouse_lock.h View 1 2 3 4 5 6 7 8 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_file_ref_private.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_flash.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_flash_clipboard.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_flash_fullscreen.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_flash_menu.h View 3 chunks +5 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_flash_net_connector.h View 1 2 3 4 5 2 chunks +3 lines, -1 line 0 comments Download
M ppapi/c/private/ppb_flash_tcp_socket.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_flash_udp_socket.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_instance_private.h View 3 chunks +5 lines, -3 lines 0 comments Download
M ppapi/c/private/ppb_net_address_private.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_tcp_socket_private.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/private/ppb_udp_socket_private.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_audio_input_trusted_dev.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_audio_trusted.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_broker_trusted.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_buffer_trusted.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_file_chooser_trusted.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_file_io_trusted.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_graphics_3d_trusted.h View 2 chunks +3 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_image_data_trusted.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/c/trusted/ppb_url_loader_trusted.h View 3 chunks +4 lines, -2 lines 0 comments Download
M ppapi/examples/2d/graphics_2d_example.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +11 lines, -12 lines 0 comments Download
M ppapi/examples/gles2/gles2.cc View 2 chunks +6 lines, -6 lines 0 comments Download
M ppapi/generators/idl_c_proto.py View 1 chunk +14 lines, -3 lines 0 comments Download
M ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h View 1 2 3 4 5 6 2 chunks +1 line, -2 lines 0 comments Download
M ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_input_event.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +4 lines, -5 lines 0 comments Download
M ppapi/native_client/src/shared/ppapi_proxy/command_buffer_nacl.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_memory.h View 2 chunks +1 line, -3 lines 0 comments Download
M ppapi/native_client/src/trusted/plugin/browser_interface.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/earth/pepper_c.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +11 lines, -11 lines 0 comments Download
M ppapi/native_client/tests/ppapi_browser/bad/ppapi_bad_event_replay_crash.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/ppapi_browser/bad/ppapi_bad_get_ppp_messaging_crash.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/ppapi_browser/bad/ppapi_bad_get_ppp_printing_crash.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/ppapi_browser/bad/ppapi_bad_ppp_initialize_crash.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/ppapi_browser/bad/ppapi_bad_ppp_instance_didcreate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/ppapi_browser/bad/ppapi_bad_ppp_instance_didcreate_crash.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M ppapi/native_client/tests/ppapi_example_audio/audio.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +4 lines, -4 lines 0 comments Download
M ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +10 lines, -10 lines 0 comments Download
M ppapi/native_client/tests/ppapi_simple_tests/audio.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +4 lines, -4 lines 0 comments Download
M ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +22 lines, -29 lines 0 comments Download
M ppapi/proxy/host_var_serialization_rules.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/proxy/interface_list.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +15 lines, -15 lines 0 comments Download
M ppapi/proxy/ppb_audio_input_proxy.h View 1 chunk +0 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_audio_proxy.h View 1 chunk +0 lines, -4 lines 0 comments Download
M ppapi/proxy/ppb_core_proxy.h View 1 chunk +0 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_file_chooser_proxy.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_file_system_proxy.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_flash_clipboard_proxy.h View 1 chunk +0 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_flash_menu_proxy.h View 1 chunk +0 lines, -1 line 0 comments Download
M ppapi/proxy/ppb_flash_net_connector_proxy.h View 1 chunk +0 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_flash_proxy.h View 1 2 3 4 5 2 chunks +2 lines, -4 lines 0 comments Download
M ppapi/proxy/ppb_flash_proxy.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_graphics_2d_proxy.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_image_data_proxy.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_instance_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_testing_proxy.h View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/proxy/ppb_url_loader_proxy.h View 1 chunk +2 lines, -3 lines 0 comments Download
M ppapi/proxy/ppb_url_loader_proxy.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_url_response_info_proxy.h View 1 chunk +0 lines, -2 lines 0 comments Download
M ppapi/proxy/ppb_var_unittest.cc View 5 chunks +4 lines, -5 lines 0 comments Download
M ppapi/proxy/ppp_input_event_proxy.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/proxy/ppp_messaging_proxy.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/proxy/ppp_mouse_lock_proxy.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/shared_impl/ppb_char_set_shared.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M ppapi/shared_impl/ppb_crypto_shared.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/shared_impl/ppb_memory_shared.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/shared_impl/ppb_var_shared.h View 1 chunk +3 lines, -4 lines 0 comments Download
M ppapi/shared_impl/ppb_var_shared.cc View 3 chunks +3 lines, -4 lines 0 comments Download
M ppapi/shared_impl/private/net_address_private_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/tests/arch_dependent_sizes_32.h View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/tests/arch_dependent_sizes_64.h View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/tests/test_audio.h View 1 2 3 4 1 chunk +3 lines, -4 lines 0 comments Download
M ppapi/tests/test_audio_config.h View 1 chunk +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_broker.h View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_buffer.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/tests/test_case.h View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -1 line 0 comments Download
M ppapi/tests/test_char_set.h View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_crypto.h View 1 2 3 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_cursor_control.h View 2 chunks +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_flash.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/tests/test_graphics_2d.h View 1 chunk +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_image_data.h View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/tests/test_input_event.h View 1 2 3 4 3 chunks +6 lines, -11 lines 0 comments Download
M ppapi/tests/test_memory.h View 2 chunks +1 line, -3 lines 0 comments Download
M ppapi/tests/test_transport.h View 1 2 3 4 1 chunk +0 lines, -2 lines 0 comments Download
M ppapi/tests/test_url_loader.h View 1 chunk +2 lines, -3 lines 0 comments Download
M ppapi/tests/test_var.h View 2 chunks +1 line, -3 lines 0 comments Download
M ppapi/tests/test_var_deprecated.h View 1 2 3 4 2 chunks +1 line, -3 lines 0 comments Download
M ppapi/tests/test_video_decoder.h View 1 2 3 4 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/tests/test_websocket.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +4 lines, -5 lines 0 comments Download
M ppapi/thunk/interfaces_ppb_private.h View 1 chunk +14 lines, -10 lines 0 comments Download
M ppapi/thunk/interfaces_ppb_public_dev.h View 1 chunk +27 lines, -26 lines 0 comments Download
M ppapi/thunk/interfaces_ppb_public_stable.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +21 lines, -20 lines 0 comments Download
M ppapi/thunk/ppb_audio_config_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_audio_input_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_audio_input_trusted_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_audio_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_audio_trusted_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_broker_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_buffer_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_buffer_trusted_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_char_set_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_console_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_cursor_control_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_directory_reader_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_file_chooser_thunk.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_file_io_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_file_io_trusted_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_file_ref_thunk.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_file_system_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_find_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_flash_clipboard_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_flash_fullscreen_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_flash_menu_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_font_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_fullscreen_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_gles_chromium_texture_mapping_thunk.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_graphics_2d_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_graphics_3d_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_graphics_3d_trusted_thunk.cc View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/thunk/ppb_image_data_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_image_data_trusted_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_input_event_thunk.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M ppapi/thunk/ppb_instance_thunk.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_layer_compositor_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_messaging_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_mouse_lock_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_scrollbar_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_tcp_socket_private_thunk.cc View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/thunk/ppb_text_input_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_transport_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_udp_socket_private_thunk.cc View 1 chunk +1 line, -2 lines 0 comments Download
M ppapi/thunk/ppb_url_loader_thunk.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M ppapi/thunk/ppb_url_request_info_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_url_response_info_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_url_util_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_video_capture_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_video_decoder_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_video_layer_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_view_thunk.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_websocket_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_widget_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/ppb_zoom_thunk.cc View 1 chunk +1 line, -1 line 0 comments Download
M ppapi/thunk/thunk.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +41 lines, -36 lines 0 comments Download
M webkit/plugins/ppapi/plugin_module.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M webkit/plugins/ppapi/plugin_module.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +29 lines, -29 lines 0 comments Download
M webkit/plugins/ppapi/ppapi_plugin_instance.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +9 lines, -9 lines 0 comments Download
M webkit/plugins/ppapi/ppapi_plugin_instance.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +3 lines, -3 lines 0 comments Download
M webkit/plugins/ppapi/ppb_file_io_impl.h View 1 chunk +0 lines, -1 line 0 comments Download
M webkit/plugins/ppapi/ppb_file_system_impl.h View 1 chunk +1 line, -2 lines 0 comments Download
M webkit/plugins/ppapi/ppb_flash_clipboard_impl.h View 1 chunk +0 lines, -2 lines 0 comments Download
M webkit/plugins/ppapi/ppb_flash_impl.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M webkit/plugins/ppapi/ppb_flash_impl.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M webkit/plugins/ppapi/ppb_graphics_2d_impl.h View 1 chunk +0 lines, -2 lines 0 comments Download
M webkit/plugins/ppapi/ppb_video_decoder_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +1 line, -2 lines 0 comments Download
M webkit/plugins/ppapi/ppb_websocket_impl.h View 1 chunk +0 lines, -2 lines 0 comments Download
M webkit/plugins/ppapi/ppp_pdf.h View 1 chunk +4 lines, -2 lines 0 comments Download
M webkit/plugins/ppapi/url_request_info_unittest.cc View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download

Messages

Total messages: 33 (0 generated)
Wez
Apologies for the number of files this touches. :( Most of the changes are required ...
9 years ago (2011-12-20 02:06:59 UTC) #1
brettw
lgtm
9 years ago (2011-12-20 22:11:46 UTC) #2
noelallen1
A few notes, otherwise LGTM http://codereview.chromium.org/8989006/diff/6207/ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h File ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h (right): http://codereview.chromium.org/8989006/diff/6207/ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h#newcode44 ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h:44: typedef PPB_GLESChromiumTextureMapping_Dev_0_1 This is ...
9 years ago (2011-12-20 22:33:31 UTC) #3
Wez
http://codereview.chromium.org/8989006/diff/6207/ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h File ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h (right): http://codereview.chromium.org/8989006/diff/6207/ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h#newcode44 ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h:44: typedef PPB_GLESChromiumTextureMapping_Dev_0_1 On 2011/12/20 22:33:32, noelallen1 wrote: > This ...
9 years ago (2011-12-21 01:15:51 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/11225
9 years ago (2011-12-22 02:16:06 UTC) #5
commit-bot: I haz the power
Can't apply patch for file ppapi/c/ppb_fullscreen.h. While running patch -p1 --forward --force; patching file ppapi/c/ppb_fullscreen.h ...
9 years ago (2011-12-22 02:17:12 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/15001
9 years ago (2011-12-22 03:16:10 UTC) #7
commit-bot: I haz the power
Presubmit check for 8989006-15001 failed and returned exit status 1. Running presubmit commit checks ...
9 years ago (2011-12-22 03:18:07 UTC) #8
dmichael (off chromium)
http://codereview.chromium.org/8989006/diff/17001/chrome/test/nacl_test_injection/buildbot_nacl_integration.py File chrome/test/nacl_test_injection/buildbot_nacl_integration.py (right): http://codereview.chromium.org/8989006/diff/17001/chrome/test/nacl_test_injection/buildbot_nacl_integration.py#newcode36 chrome/test/nacl_test_injection/buildbot_nacl_integration.py:36: tests_to_disable.append('run_earth_c') Looking at native_client/tests/earth/nacl.scons, I think you need: 'earth_browser_test_c' ...
9 years ago (2011-12-22 20:14:57 UTC) #9
dmichael (off chromium)
As I mentioned in IM, you should probably update the native_client_sdk. I also want note ...
9 years ago (2011-12-22 20:19:47 UTC) #10
yzshen1
http://codereview.chromium.org/8989006/diff/21003/ppapi/proxy/ppb_url_loader_proxy.h File ppapi/proxy/ppb_url_loader_proxy.h (right): http://codereview.chromium.org/8989006/diff/21003/ppapi/proxy/ppb_url_loader_proxy.h#newcode14 ppapi/proxy/ppb_url_loader_proxy.h:14: #include "ppapi/c/ppb_url_loader.h" nit, optional: You could remove redundant headers ...
9 years ago (2011-12-23 00:16:11 UTC) #11
Wez
On 2011/12/22 20:19:47, dmichael wrote: > As I mentioned in IM, you should probably update ...
8 years, 11 months ago (2012-01-03 13:06:58 UTC) #12
Wez
http://codereview.chromium.org/8989006/diff/21003/ppapi/proxy/ppb_url_loader_proxy.h File ppapi/proxy/ppb_url_loader_proxy.h (right): http://codereview.chromium.org/8989006/diff/21003/ppapi/proxy/ppb_url_loader_proxy.h#newcode14 ppapi/proxy/ppb_url_loader_proxy.h:14: #include "ppapi/c/ppb_url_loader.h" On 2011/12/23 00:16:11, yzshen1 wrote: > nit, ...
8 years, 11 months ago (2012-01-03 13:11:08 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/25001
8 years, 11 months ago (2012-01-03 13:17:52 UTC) #14
commit-bot: I haz the power
Presubmit check for 8989006-25001 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-03 13:19:25 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/25001
8 years, 11 months ago (2012-01-03 14:31:14 UTC) #16
commit-bot: I haz the power
Presubmit check for 8989006-25001 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-03 14:32:55 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/25001
8 years, 11 months ago (2012-01-03 16:36:34 UTC) #18
commit-bot: I haz the power
Presubmit check for 8989006-25001 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-03 16:38:27 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/25001
8 years, 11 months ago (2012-01-03 17:56:12 UTC) #20
commit-bot: I haz the power
Can't apply patch for file ppapi/api/ppp_instance.idl. While running patch -p1 --forward --force; patching file ppapi/api/ppp_instance.idl ...
8 years, 11 months ago (2012-01-03 17:57:21 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/30001
8 years, 11 months ago (2012-01-04 11:16:44 UTC) #22
commit-bot: I haz the power
Can't apply patch for file ppapi/c/ppb_view.h. While running patch -p1 --forward --force; patching file ppapi/c/ppb_view.h ...
8 years, 11 months ago (2012-01-04 11:17:45 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/35001
8 years, 11 months ago (2012-01-04 14:18:54 UTC) #24
commit-bot: I haz the power
Presubmit check for 8989006-35001 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-04 14:20:24 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/33002
8 years, 11 months ago (2012-01-04 14:33:19 UTC) #26
commit-bot: I haz the power
Presubmit check for 8989006-33002 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-04 14:35:00 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/41001
8 years, 11 months ago (2012-01-04 14:46:20 UTC) #28
commit-bot: I haz the power
Presubmit check for 8989006-41001 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-04 14:47:53 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/39227
8 years, 11 months ago (2012-01-04 15:35:58 UTC) #30
commit-bot: I haz the power
Presubmit check for 8989006-39227 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 11 months ago (2012-01-04 15:38:24 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wez@chromium.org/8989006/43001
8 years, 11 months ago (2012-01-05 11:24:09 UTC) #32
commit-bot: I haz the power
8 years, 11 months ago (2012-01-05 11:26:18 UTC) #33
Presubmit check for 8989006-43001 failed and returned exit status 1.

Running presubmit commit checks ...
  checking nsobjects took a long time: 830ms
  checking eol style took a long time: 579ms

** Presubmit Warnings **
Missing matching PPAPI definition:

***************
  ppapi/c/dev/pp_cursor_type_dev.h
  ppapi/c/pp_bool.h
  ppapi/c/pp_errors.h
  ppapi/c/pp_graphics_3d.h
  ppapi/c/pp_instance.h
  ppapi/c/pp_macros.h
  ppapi/c/pp_module.h
  ppapi/c/pp_resource.h
  ppapi/c/pp_stdint.h
  ppapi/c/pp_time.h
  ppapi/c/ppb.h
  ppapi/c/ppp.h
  ppapi/c/private/finish_writing_these/ppb_flash_file.h
  ppapi/c/private/finish_writing_these/ppb_flash_menu.h
  ppapi/c/private/finish_writing_these/ppb_nacl_private.h
  ppapi/c/private/finish_writing_these/ppb_pdf.h
  ppapi/c/private/finish_writing_these/ppb_proxy_private.h
  ppapi/c/trusted/ppp_broker.h
  ppapi/api/dev/ppb_char_set_dev.idl
  ppapi/api/dev/ppb_crypto_dev.idl
  ppapi/api/dev/ppb_directory_reader_dev.idl
  ppapi/api/dev/ppb_gles_chromium_texture_mapping_dev.idl
  ppapi/api/dev/ppb_layer_compositor_dev.idl
  ppapi/api/ppb_graphics_3d.idl
  ppapi/api/private/ppb_flash_menu.idl
  ppapi/api/private/ppb_flash_net_connector.idl
  ppapi/api/private/ppb_instance_private.idl
  ppapi/api/private/ppb_net_address_private.idl
  ppapi/api/trusted/ppb_audio_input_trusted_dev.idl
  ppapi/api/trusted/ppb_file_chooser_trusted.idl
  ppapi/api/trusted/ppb_graphics_3d_trusted.idl
***************

Presubmit checks took 20.3s to calculate.

Powered by Google App Engine
This is Rietveld 408576698