summaryrefslogtreecommitdiffstats
path: root/ppapi/api
Commit message (Collapse)AuthorAgeFilesLines
* PPAPI Fullscreen: move out of Dev.polina@google.com2011-10-141-0/+49
| | | | | | | | BUG=41780 TEST=in CL Review URL: http://codereview.chromium.org/8291002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105590 0039d316-1c4b-4281-b951-d872f2087c98
* PPAPI Fullscreen: remove redundant code errouneously inherited frompolina@google.com2011-10-141-7/+5
| | | | | | | | | | | | | FlashFullscreen. Tested with ppapi/native_client/tests/ppapi_browser/ppb_fullscreen upgraded with 2D graphics. Will commit in a separate patch. BUG=41780 TEST=ppapi/tests/test_fullscreen + see above Review URL: http://codereview.chromium.org/8275031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105530 0039d316-1c4b-4281-b951-d872f2087c98
* PPAPI Fullscreen: Hack plugin's attributes to force resizing of the plugin ↵polina@google.com2011-10-141-6/+4
| | | | | | | | | | | | | | | | | | to fill in the screen in SetFullscreen. Reset plugin size in ViewChanged when we exit. Update tests. We are forced to resize the plugin in the Pepper layer because WebKit does yet do it. It only moves the plugin to the middle of the screen with the expectations the web page will contain the following css: :-webkit-full-screen { width: 100%; height: 100%; } That's not acceptable for Pepper/NaCl users. BUG=41780,98474 TEST=in CL Review URL: http://codereview.chromium.org/8228023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105476 0039d316-1c4b-4281-b951-d872f2087c98
* Move 'SaveAs' functionality from PPB_FileChooser_Dev to ↵bbudge@google.com2011-10-122-32/+31
| | | | | | | | PPB_FileChooser_Trusted.We want to follow the Web platform, not diverge, and <input type=saveas> was neverstandardized. Move 'SaveAs' to the trusted interface for Flash. Review URL: http://codereview.chromium.org/8224012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105113 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the IDL for PPB_Font_Dev now that enum values can be expressions.bbudge@chromium.org2011-10-111-2/+2
| | | | | | | | | BUG=none TEST=manually running generator.py Review URL: http://codereview.chromium.org/8202022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104886 0039d316-1c4b-4281-b951-d872f2087c98
* Convert video capture/decoder stuff to IDL.brettw@chromium.org2011-10-076-0/+657
| | | | | | | | | I revved the PPP_VideoDecoder interface since IDL wants to pass PP_Picture_Dev by pointer instead of by value. This also renames the VIDEO_CAPTURE interface string/define to VIDEOCAPTURE for consistency (what IDL wants to do). Review URL: http://codereview.chromium.org/8144008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104569 0039d316-1c4b-4281-b951-d872f2087c98
* Create IDL for PPB_FileChooser_Dev and PPB_FileChooser_Trusted, and add the ↵bbudge@google.com2011-10-052-0/+144
| | | | | | | | | | | ability to run the filedialog in "Save As" mode. BUG=73070 TEST=none yet Review URL: http://codereview.chromium.org/8116018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104131 0039d316-1c4b-4281-b951-d872f2087c98
* Convert transport, scrollbar, and query policy to IDL.brettw@chromium.org2011-10-054-0/+318
| | | | | | | | | | | This renames the scrollbar interface to not use the version number to make it consistent with other APIs. TEST=none BUG=none Review URL: http://codereview.chromium.org/8142001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104102 0039d316-1c4b-4281-b951-d872f2087c98
* Use Noel's chromium.org address instead of his google.com one for owners.brettw@chromium.org2011-10-041-1/+1
| | | | | | Review URL: http://codereview.chromium.org/8136017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104011 0039d316-1c4b-4281-b951-d872f2087c98
* Convert font, console, buffer, and find to IDL.brettw@chromium.org2011-10-044-0/+378
| | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/8124015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103905 0039d316-1c4b-4281-b951-d872f2087c98
* Additional update on Pepper IME API and boilerplate thunk/proxy implementation.kinaba@chromium.org2011-09-293-24/+15
| | | | | | | | | | | | | | | | | | | | | BUG=59425 TEST=Check that ppapi_tests compile (with GYP_DEFINES=shared_library, too). This CL is the second (out of three) part for adding IME support for PPAPI. It reflects comments from James Su to the previous CL: http://codereview.chromium.org/7882004. - Renamed ..._COMPOSTION_START to _IME_COMPOSITON_START. - Changed to assure GetSegment to return a strictly increasing sequence of segmentation points from 0 to the length. and, - Added the mostly boilerplate code for interfacing with in-process & out-of-process plugins. The actual implementation of the IME support will come as the next and the last part of this series of patches. Review URL: http://codereview.chromium.org/8059006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103234 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 102897 - Additional update on Pepper IME API and boilerplate ↵kinaba@chromium.org2011-09-273-15/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | thunk/proxy implementation. BUG=59425 TEST=Check that ppapi_tests compile. This CL is the second (out of three) part for adding IME support for PPAPI. It reflects comments from James Su to the previous CL: http://codereview.chromium.org/7882004. - Renamed ..._COMPOSTION_START to _IME_COMPOSITON_START. - Changed to assure GetSegment to return a strictly increasing sequence of segmentation points from 0 to the length. and, - Added the mostly boilerplate code for interfacing with in-process & out-of-process plugins. The actual implementation of the IME support will come as the next and the last part of this series of patches. Review URL: http://codereview.chromium.org/7978019 TBR=kinaba@chromium.org Review URL: http://codereview.chromium.org/8060005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102900 0039d316-1c4b-4281-b951-d872f2087c98
* Additional update on Pepper IME API and boilerplate thunk/proxy implementation.kinaba@chromium.org2011-09-273-24/+15
| | | | | | | | | | | | | | | | | | | | | BUG=59425 TEST=Check that ppapi_tests compile. This CL is the second (out of three) part for adding IME support for PPAPI. It reflects comments from James Su to the previous CL: http://codereview.chromium.org/7882004. - Renamed ..._COMPOSTION_START to _IME_COMPOSITON_START. - Changed to assure GetSegment to return a strictly increasing sequence of segmentation points from 0 to the length. and, - Added the mostly boilerplate code for interfacing with in-process & out-of-process plugins. The actual implementation of the IME support will come as the next and the last part of this series of patches. Review URL: http://codereview.chromium.org/7978019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102897 0039d316-1c4b-4281-b951-d872f2087c98
* Add PPB_Fullscreen_Dev;0.5. Keep 0.4 for backwards compatiblity and point itpolina@google.com2011-09-272-17/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to PPB_FlashFullscreen. The new implementation is based on http://codereview.chromium.org/7714017/ with some bug fixes. Update header comments. Main API differences between the old and the new implementation: - transition from fullscreen is now asynchronous and ends at DidChangeView just like transition to fullscreen; graphics devices cannot be bound during the transition. - when switching to/from fullscreen 3D resources no longer need to be re-created. - transitions to fullscreen are only possible when processing user user gestures. - transition to fullscreen results in 2 DidChangeViews, one for moving the plugin to the middle of the window and one for stretching the window and placing the plugin in the middle of the screen. - the size of the plugin is not changed when going to/from fullscreen. Testing: - Mapped ppapi_tests:test_fullscreen to ppapi_tests:test_flash_fullscreen. - Updated test_fullscreen to work with the new implementation. To be testable automatically this needs enhancements to the testing infrastructure for generating user gestures. For now marked the test as DISABLED. - Disabled NaCl's ppapi_ppb_fullscreen_browser_test for the same reasons as above. - To re-enable both tests, we will first need to add user gesture capabilites to PPB_Testing. - Build 0.4 ppapi_test:test_fullscreen and ran this out of process and in process with the newly build revision of chrome to verify backwards compatability. - In a separate CL, will update NaCl's ppapi_ppb_fullscreen_browser_test to work with the new implementation, for now only manually. BUG=41780 TEST=see above Review URL: http://codereview.chromium.org/7826017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102888 0039d316-1c4b-4281-b951-d872f2087c98
* Add Pepper API to use UDP mtilburg@adobe.com2011-09-261-0/+59
| | | | | | | | | | | | author: mtilburg@adobe.com BUG=none TEST=tested with pepper flash Review URL: http://codereview.chromium.org/8036036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102817 0039d316-1c4b-4281-b951-d872f2087c98
* Add IDL file for PPB_Flash_TCPSocket.yzshen@chromium.org2011-09-261-0/+124
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/8036009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102754 0039d316-1c4b-4281-b951-d872f2087c98
* Rename PPB_Fullscreen_Dev to PPB_FlashFullscreen.brettw@chromium.org2011-09-201-0/+48
| | | | | | | | | | | This is to make way for the new PPB_Fullscreen interface which will hopefully replace the old one at some point. This maintains backwards binary compat. I renamed two things related to the broker because the file wasn't being included in the proxy properly, and we never noticed they were wrong. This also fixes a crash in the test harness generating the list of tests, since there is no current test case for the DidChangeView call. Review URL: http://codereview.chromium.org/7917019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101999 0039d316-1c4b-4281-b951-d872f2087c98
* Add a new error code for a null callback on the main thread.brettw@chromium.org2011-09-161-3/+29
| | | | | | | | Convert the NaCl and ChromeIPC proxies to use the new value. Review URL: http://codereview.chromium.org/7885014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101556 0039d316-1c4b-4281-b951-d872f2087c98
* Declarations for Pepper IME API.kinaba@chromium.org2011-09-163-1/+202
| | | | | | | | | | | | | | BUG=59425 TEST=Check that ppapi_tests compile. This change list is the first part for adding IME support for PPAPI. For effectiveness of reviewing, I'll split the rather large change into three parts: (*1) Header files declaring IME API. (2) Boilerplate code for proxy & thunk stuff. (3) Actual implementation in webkit/plugin/ppapi/* and content/renderer/*. Review URL: http://codereview.chromium.org/7882004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101458 0039d316-1c4b-4281-b951-d872f2087c98
* Make NaCl PPAPI proxy honor the Disable3DApis policy.mnissler@chromium.org2011-09-081-2/+8
| | | | | | | | | BUG=chromium:90037 TEST=manual Review URL: http://codereview.chromium.org/7808001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100192 0039d316-1c4b-4281-b951-d872f2087c98
* Remove executable permission.yzshen@chromium.org2011-09-082-0/+0
| | | | | | | | | | | TBR=estade TEST=pass check_perms buildbot. BUG=None Review URL: http://codereview.chromium.org/7846021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100180 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce a new Pepper interface: PPB/PPP_MouseLock.yzshen@chromium.org2011-09-082-0/+85
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/7828019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100166 0039d316-1c4b-4281-b951-d872f2087c98
* Fix out of sync pp_errors.idl and ppb_input_event.idlnoelallen@google.com2011-09-062-5/+70
| | | | | | | | | | | Trivial fix of out of sync IDL files. TEST= none BUG= none TBR= yzshen@chromium.org Review URL: http://codereview.chromium.org/7789014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99841 0039d316-1c4b-4281-b951-d872f2087c98
* Convert c/dev ppp_zoom_dev and ppp_widget_dev to IDLnoelallen@google.com2011-09-062-0/+53
| | | | | | | | TEST= ./generator.py & try BUG= http://code.google.com/p/chromium/issues/detail?id=89968 Review URL: http://codereview.chromium.org/7833031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99823 0039d316-1c4b-4281-b951-d872f2087c98
* Convert zoom and widget to IDLnoelallen@google.com2011-09-062-0/+83
| | | | | | | | | | | | NOTE: In converting widget I noticed that GetLocation returns bool, implying it can fail. I assume this is when the PP_Resource is not actually a widget. Shouldn't SetLocation match this? TEST= ./generator.py & try BUG= http://code.google.com/p/chromium/issues/detail?id=89968 Review URL: http://codereview.chromium.org/7767007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99682 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed spelling errors and changed all references to PP_Resource to be thejond@google.com2011-08-319-42/+48
| | | | | | | same (on @param tags) as per polina. Review URL: http://codereview.chromium.org/7701004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98972 0039d316-1c4b-4281-b951-d872f2087c98
* Changed all @code to <code> and @endcode to </code> as per dmichael. Adding ↵jond@google.com2011-08-304-62/+79
| | | | | | | | Polina to the review to look at url_loader.h and give approval of text that points to example. Review URL: http://codereview.chromium.org/7715005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98856 0039d316-1c4b-4281-b951-d872f2087c98
* Add IDL for the fullscreen dev API and automatically generate the .h file.brettw@chromium.org2011-08-261-0/+48
| | | | | | Review URL: http://codereview.chromium.org/7740052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98465 0039d316-1c4b-4281-b951-d872f2087c98
* Fix incorrect API version information.noelallen@google.com2011-08-2514-21/+1
| | | | | | | | | | | | | | | Several IDL files contain references to M13 which are unused. This causes the generator to use M13 instead of M14 as the version number for the unchanged interface. This CL removes the unused references to M13 in the IDL, and pushes the updated set of '*.h' removing the unused #define of the unused version string. BUG= http://code.google.com/p/chromium/issues/detail?id=94201 TEST= compile + try R= brettw@chromium.org Review URL: http://codereview.chromium.org/7748012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98348 0039d316-1c4b-4281-b951-d872f2087c98
* Fix typos in ppb_url_loader.idlyuzo@chromium.org2011-08-191-3/+3
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/7669049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97401 0039d316-1c4b-4281-b951-d872f2087c98
* Changed "Pepper Audio API Code Walkthrough" to "Pepper Audio API" as per Andy.jond@google.com2011-08-162-2/+2
| | | | | | Review URL: http://codereview.chromium.org/7664012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97003 0039d316-1c4b-4281-b951-d872f2087c98
* New documentation for ppb_input_event.hjond@google.com2011-08-161-77/+212
| | | | | | Review URL: http://codereview.chromium.org/7647034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96988 0039d316-1c4b-4281-b951-d872f2087c98
* Some minor doc changesjond@google.com2011-08-162-3/+3
| | | | | | Review URL: http://codereview.chromium.org/7650020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96986 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed several issues with <code> tags mostly (warnings in Doxygen). jond@google.com2011-08-156-11/+13
| | | | | | Review URL: http://codereview.chromium.org/7628003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96789 0039d316-1c4b-4281-b951-d872f2087c98
* Formatting changesjond@google.com2011-08-124-42/+91
| | | | | | | Fixes to some of the C documentation in the IDL. Review URL: http://codereview.chromium.org/7308010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96561 0039d316-1c4b-4281-b951-d872f2087c98
* PPAPI: header comments on when PPP_Instance::DidDestroy and PPP_ShutdownModulepolina@google.com2011-08-082-11/+16
| | | | | | | | | | are called on trusted and untrusted implementations. BUG=91758 TEST=n/a Review URL: http://codereview.chromium.org/7576026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95835 0039d316-1c4b-4281-b951-d872f2087c98
* PPAPI: Make forceasync callback option the default.polina@google.com2011-07-221-5/+2
| | | | | | | | BUG=79376 TEST=ppapi_tests + NaCl integration Review URL: http://codereview.chromium.org/7461023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93682 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the requirement that keyboard events be sent in filtered mode. Thisbrettw@chromium.org2011-07-221-8/+9
| | | | | | | | hurts some higher-performance game use cases, and probably won't help much to prevent abuse. Review URL: http://codereview.chromium.org/7481021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93641 0039d316-1c4b-4281-b951-d872f2087c98
* Clarify the requirements of the GetInterface function that the plugin mustbrettw@chromium.org2011-07-221-0/+10
| | | | | | | implement to include warnings about reentrancy and using other functions. Review URL: http://codereview.chromium.org/7486015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93638 0039d316-1c4b-4281-b951-d872f2087c98
* Trivial fix for IDL to H deltanoelallen@google.com2011-07-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | ppp_instance has a block of injected code: typedef PPP_Instance PPP_Instance_1_0; This was not updated to _1_0 from _0_5 when the version number was bumped. Since #include blocks are injected as is, instead of generated, changes that are version dependent will create problems later. This CL fixes the IDL so that it generates the correct thing, however, a better fix would be to either always generate type typedef automatically, or to not rely on the typedef in this way. This particular issue is more confusing in that it is the only instance of this requirement. TEST= trybots BUG= none R= brettw@chromium.org Review URL: http://codereview.chromium.org/7472015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93291 0039d316-1c4b-4281-b951-d872f2087c98
* Convert input event to interface version 1.0. Rename some of the mouse andbrettw@chromium.org2011-07-204-64/+82
| | | | | | | | | | | | | | | | | | wheel events to remove the redundant "Mouse" and "Wheel" in the getters. Rename PP_INPUTEVENT_TYPE_MOUSEWHEEL to .._WHEEL so that it doesn't look like a mouse event (it's its own type). Add documentation to the C++ wrapper from the C wrappers. Do some minor documentation updates. Update IDL for some of the recent changes we've made. Update the way points are passed for resource creation since IDL wanted to do it by pointer. TEST=it compiles. Review URL: http://codereview.chromium.org/7464003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93263 0039d316-1c4b-4281-b951-d872f2087c98
* Reland http://codereview.chromium.org/7452002/ againdmichael@chromium.org2011-07-201-37/+8
| | | | | | | | | | | | | | Update chromoting input events. (Clang caught this. Thanks, Clang!) Note I'm leaving in temporary backwards-compatibility. BUG=None TEST=ppapi tests TBR=brettw,sergeyu Review URL: http://codereview.chromium.org/7466008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93234 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 93223 - Reland http://codereview.chromium.org/7452002/dmichael@chromium.org2011-07-201-8/+37
| | | | | | | | | | | | | | | | | | Update chromoting input events. (Clang caught this. Thanks, Clang!) Note I'm leaving in temporary backwards-compatibility. brettw, just need a rubber-stamp. This is the same as the last CL. awong/garykac/sergeyu, looking for someone on chromoting team to glance at my changes and make sure I didn't do anything you don't like. This is a high priority for 14, so please look if you can. BUG=None TEST=ppapi tests Review URL: http://codereview.chromium.org/7466002 TBR=dmichael@chromium.org Review URL: http://codereview.chromium.org/7471006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93229 0039d316-1c4b-4281-b951-d872f2087c98
* Reland http://codereview.chromium.org/7452002/dmichael@chromium.org2011-07-201-37/+8
| | | | | | | | | | | | | | | Update chromoting input events. (Clang caught this. Thanks, Clang!) Note I'm leaving in temporary backwards-compatibility. brettw, just need a rubber-stamp. This is the same as the last CL. awong/garykac/sergeyu, looking for someone on chromoting team to glance at my changes and make sure I didn't do anything you don't like. This is a high priority for 14, so please look if you can. BUG=None TEST=ppapi tests Review URL: http://codereview.chromium.org/7466002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93223 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 93202 - Remove HandleInputEvent from PPP_Instance and freeze to 1.0.dmichael@chromium.org2011-07-201-8/+37
| | | | | | | | | | | | | | Note I'm leaving in temporary backwards-compatibility. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2035 TEST=ppapi tests Review URL: http://codereview.chromium.org/7452002 TBR=dmichael@chromium.org Review URL: http://codereview.chromium.org/7467002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93208 0039d316-1c4b-4281-b951-d872f2087c98
* Remove HandleInputEvent from PPP_Instance and freeze to 1.0.dmichael@chromium.org2011-07-201-37/+8
| | | | | | | | | | | Note I'm leaving in temporary backwards-compatibility. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2035 TEST=ppapi tests Review URL: http://codereview.chromium.org/7452002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93202 0039d316-1c4b-4281-b951-d872f2087c98
* Missing changes for IDLnoelallen@google.com2011-07-192-4/+45
| | | | | | | | | | To minor changes to comments for the IDL. Updated pp_stdint.idl so that we could generate it instead of checking in pp_stdint.h. In addition it now provides a location for defining built in types. Eventually we can migrate type properties into this file. Review URL: http://codereview.chromium.org/7448005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93125 0039d316-1c4b-4281-b951-d872f2087c98
* Allow creation of input events. Revert changes to testing interface forbrettw@chromium.org2011-07-191-4/+0
| | | | | | | | | creating keyboard events. TEST=manual Review URL: http://codereview.chromium.org/7443005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93076 0039d316-1c4b-4281-b951-d872f2087c98
* Update the IDLnoelallen@google.com2011-07-1642-782/+3798
| | | | | | | | | | | | | Final update of the IDL so that we can switch to using generated code for ppapi/c/ and ppapi/c/trusted. BUG= http://code.google.com/p/chromium/issues/detail?id=74634 TEST= tryserver TBR= dmichael@chromium.org Review URL: http://codereview.chromium.org/7390023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92805 0039d316-1c4b-4281-b951-d872f2087c98
* Add owners files to ppapi.brettw@chromium.org2011-06-291-0/+1
| | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/7273075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91016 0039d316-1c4b-4281-b951-d872f2087c98