diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-11 21:12:36 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-11 21:12:36 +0000 |
commit | ad63b5c19a0cc18eab88fa90ab7a244cdf5a8b99 (patch) | |
tree | b6197fe4b3fe1a18e7d1ae59ff81fad94a2ee7b7 /content/renderer/pepper/pepper_file_system_host.cc | |
parent | 02f1e6a8ebae2d5aa0e669ecdd1781f83caf0e70 (diff) | |
download | chromium_src-ad63b5c19a0cc18eab88fa90ab7a244cdf5a8b99.zip chromium_src-ad63b5c19a0cc18eab88fa90ab7a244cdf5a8b99.tar.gz chromium_src-ad63b5c19a0cc18eab88fa90ab7a244cdf5a8b99.tar.bz2 |
PPAPI: Run clang_format.py on content/renderer/pepper
BUG=345417
Review URL: https://codereview.chromium.org/225903006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263356 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/pepper/pepper_file_system_host.cc')
-rw-r--r-- | content/renderer/pepper/pepper_file_system_host.cc | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/content/renderer/pepper/pepper_file_system_host.cc b/content/renderer/pepper/pepper_file_system_host.cc index 36000fd..2dc3403 100644 --- a/content/renderer/pepper/pepper_file_system_host.cc +++ b/content/renderer/pepper/pepper_file_system_host.cc @@ -33,8 +33,7 @@ PepperFileSystemHost::PepperFileSystemHost(RendererPpapiHost* host, type_(type), opened_(false), called_open_(false), - weak_factory_(this) { -} + weak_factory_(this) {} PepperFileSystemHost::PepperFileSystemHost(RendererPpapiHost* host, PP_Instance instance, @@ -47,29 +46,23 @@ PepperFileSystemHost::PepperFileSystemHost(RendererPpapiHost* host, opened_(true), root_url_(root_url), called_open_(true), - weak_factory_(this) { -} + weak_factory_(this) {} -PepperFileSystemHost::~PepperFileSystemHost() { -} +PepperFileSystemHost::~PepperFileSystemHost() {} int32_t PepperFileSystemHost::OnResourceMessageReceived( const IPC::Message& msg, ppapi::host::HostMessageContext* context) { IPC_BEGIN_MESSAGE_MAP(PepperFileSystemHost, msg) - PPAPI_DISPATCH_HOST_RESOURCE_CALL( - PpapiHostMsg_FileSystem_Open, - OnHostMsgOpen) - PPAPI_DISPATCH_HOST_RESOURCE_CALL( - PpapiHostMsg_FileSystem_InitIsolatedFileSystem, - OnHostMsgInitIsolatedFileSystem) + PPAPI_DISPATCH_HOST_RESOURCE_CALL(PpapiHostMsg_FileSystem_Open, OnHostMsgOpen) + PPAPI_DISPATCH_HOST_RESOURCE_CALL( + PpapiHostMsg_FileSystem_InitIsolatedFileSystem, + OnHostMsgInitIsolatedFileSystem) IPC_END_MESSAGE_MAP() return PP_ERROR_FAILED; } -bool PepperFileSystemHost::IsFileSystemHost() { - return true; -} +bool PepperFileSystemHost::IsFileSystemHost() { return true; } void PepperFileSystemHost::DidOpenFileSystem( const std::string& /* name_unused */, |