diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 23:37:53 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 23:37:53 +0000 |
commit | fbe51667207db9f146e05ece7f3643379d558c68 (patch) | |
tree | 002b8171f92a5dad2557136e14db9aa26ebe939a /ppapi/thunk | |
parent | 76ad74ee456f5133b5b6416b1aa122a320252bc7 (diff) | |
download | chromium_src-fbe51667207db9f146e05ece7f3643379d558c68.zip chromium_src-fbe51667207db9f146e05ece7f3643379d558c68.tar.gz chromium_src-fbe51667207db9f146e05ece7f3643379d558c68.tar.bz2 |
Use enum instead of string to specify transport type.
TEST=None
BUG=41776
Review URL: http://codereview.chromium.org/7891014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk')
-rw-r--r-- | ppapi/thunk/ppb_transport_thunk.cc | 5 | ||||
-rw-r--r-- | ppapi/thunk/resource_creation_api.h | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ppapi/thunk/ppb_transport_thunk.cc b/ppapi/thunk/ppb_transport_thunk.cc index 17c572e..b0caae1 100644 --- a/ppapi/thunk/ppb_transport_thunk.cc +++ b/ppapi/thunk/ppb_transport_thunk.cc @@ -17,11 +17,12 @@ namespace { typedef EnterResource<PPB_Transport_API> EnterTransport; -PP_Resource Create(PP_Instance instance, const char* name, const char* proto) { +PP_Resource Create(PP_Instance instance, const char* name, + PP_TransportType type) { EnterFunction<ResourceCreationAPI> enter(instance, true); if (enter.failed()) return 0; - return enter.functions()->CreateTransport(instance, name, proto); + return enter.functions()->CreateTransport(instance, name, type); } PP_Bool IsTransport(PP_Resource resource) { diff --git a/ppapi/thunk/resource_creation_api.h b/ppapi/thunk/resource_creation_api.h index 5cb7383..5c92f38 100644 --- a/ppapi/thunk/resource_creation_api.h +++ b/ppapi/thunk/resource_creation_api.h @@ -16,6 +16,7 @@ #include "ppapi/c/ppb_graphics_3d.h" #include "ppapi/c/ppb_image_data.h" #include "ppapi/c/ppb_input_event.h" +#include "ppapi/c/dev/ppb_transport_dev.h" #include "ppapi/proxy/interface_id.h" struct PP_Flash_Menu; @@ -110,7 +111,7 @@ class ResourceCreationAPI { const int32_t* attrib_list) = 0; virtual PP_Resource CreateTransport(PP_Instance instance, const char* name, - const char* proto) = 0; + PP_TransportType type) = 0; virtual PP_Resource CreateURLLoader(PP_Instance instance) = 0; virtual PP_Resource CreateURLRequestInfo( PP_Instance instance, |