diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-14 15:43:42 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-14 15:43:42 +0000 |
commit | eccf8031b30e3f8cf85b1e0dc82e69966afa30d5 (patch) | |
tree | 6c10625135c1fd95eb316fdbf496c5a5ee220c6e /ppapi/ppapi_proxy.gypi | |
parent | 1c7fa0a26fed6f48fbb2a7fe5724c5f9143610ff (diff) | |
download | chromium_src-eccf8031b30e3f8cf85b1e0dc82e69966afa30d5.zip chromium_src-eccf8031b30e3f8cf85b1e0dc82e69966afa30d5.tar.gz chromium_src-eccf8031b30e3f8cf85b1e0dc82e69966afa30d5.tar.bz2 |
This implements the PPB_FileChooser resource as a new-style IPC-only resource.
Note that the new file name is file_chooser_resource in the proxy. I decided to drop the ppb_ prefix for the "new-style" files to help differentiate them, and also because it's technically wrong. PPB is an interface, and a resource "object" may support multiple interfaces. I think FooResource is easier to type and read.
Review URL: https://chromiumcodereview.appspot.com/10544089
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146737 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi_proxy.gypi')
-rw-r--r-- | ppapi/ppapi_proxy.gypi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ppapi/ppapi_proxy.gypi b/ppapi/ppapi_proxy.gypi index 7a21f15..d6ed428 100644 --- a/ppapi/ppapi_proxy.gypi +++ b/ppapi/ppapi_proxy.gypi @@ -24,6 +24,8 @@ 'proxy/dispatcher.cc', 'proxy/dispatcher.h', 'proxy/enter_proxy.h', + 'proxy/file_chooser_resource.cc', + 'proxy/file_chooser_resource.h', 'proxy/host_dispatcher.cc', 'proxy/host_dispatcher.h', 'proxy/host_var_serialization_rules.cc', @@ -43,6 +45,8 @@ 'proxy/plugin_main_nacl.cc', 'proxy/plugin_message_filter.cc', 'proxy/plugin_message_filter.h', + 'proxy/plugin_resource.cc', + 'proxy/plugin_resource.h', 'proxy/plugin_resource_tracker.cc', 'proxy/plugin_resource_tracker.h', 'proxy/plugin_var_serialization_rules.cc', @@ -65,8 +69,6 @@ 'proxy/ppb_buffer_proxy.h', 'proxy/ppb_core_proxy.cc', 'proxy/ppb_core_proxy.h', - 'proxy/ppb_file_chooser_proxy.cc', - 'proxy/ppb_file_chooser_proxy.h', 'proxy/ppb_file_io_proxy.cc', 'proxy/ppb_file_io_proxy.h', 'proxy/ppb_file_ref_proxy.cc', |