summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/resource_creation_proxy.h
diff options
context:
space:
mode:
authorsanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-07 18:34:40 +0000
committersanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-07 18:34:40 +0000
commitea505a9d49ef9770557423d2e4525d8fb91eab69 (patch)
tree7ace0236f95b3d101fd0e392d0506845c23d8223 /ppapi/proxy/resource_creation_proxy.h
parent054498a7c3951d4047812ed918c06d46b3daa6ee (diff)
downloadchromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.zip
chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.gz
chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.bz2
Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB_FileRef, and PPB_FileSystem.
Also fixed some lint errors. Review URL: http://codereview.chromium.org/7248047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91733 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/resource_creation_proxy.h')
-rw-r--r--ppapi/proxy/resource_creation_proxy.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ppapi/proxy/resource_creation_proxy.h b/ppapi/proxy/resource_creation_proxy.h
index 218607b..e6b609f 100644
--- a/ppapi/proxy/resource_creation_proxy.h
+++ b/ppapi/proxy/resource_creation_proxy.h
@@ -5,6 +5,8 @@
#ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
#define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
+#include <string>
+
#include "base/basictypes.h"
#include "ipc/ipc_channel.h"
#include "ppapi/c/pp_bool.h"
@@ -26,7 +28,7 @@ class ResourceCreationProxy : public ::ppapi::FunctionGroupBase,
public ::IPC::Channel::Listener,
public IPC::Message::Sender {
public:
- ResourceCreationProxy(Dispatcher* dispatcher);
+ explicit ResourceCreationProxy(Dispatcher* dispatcher);
virtual ~ResourceCreationProxy();
virtual ::ppapi::thunk::ResourceCreationAPI* AsResourceCreationAPI() OVERRIDE;
@@ -59,7 +61,7 @@ class ResourceCreationProxy : public ::ppapi::FunctionGroupBase,
virtual PP_Resource CreateFileRef(PP_Resource file_system,
const char* path) OVERRIDE;
virtual PP_Resource CreateFileSystem(PP_Instance instance,
- PP_FileSystemType_Dev type) OVERRIDE;
+ PP_FileSystemType type) OVERRIDE;
virtual PP_Resource CreateFlashMenu(PP_Instance instance,
const PP_Flash_Menu* menu_data) OVERRIDE;
virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE;