diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 18:58:01 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 18:58:01 +0000 |
commit | d07fa3791159ea88bd0efd37e6ab7589f21affcf (patch) | |
tree | 19026bcbf806c0c14fdd89617eea26918a8cfd11 /ppapi/proxy/ppb_flash_proxy.h | |
parent | 3fa964af1c44352d08fca3a4bb0cad6006b3640c (diff) | |
download | chromium_src-d07fa3791159ea88bd0efd37e6ab7589f21affcf.zip chromium_src-d07fa3791159ea88bd0efd37e6ab7589f21affcf.tar.gz chromium_src-d07fa3791159ea88bd0efd37e6ab7589f21affcf.tar.bz2 |
PPB_Flash cleanup part 2: move all the file stuff to ppb_flash_file.*.
ppb_flash_file.* is intended to contain multiple (very similar) interfaces, of
which the ModuleLocal stuff is one.
BUG=none
TEST="everything" still works
Review URL: http://codereview.chromium.org/6579026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75921 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_flash_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_flash_proxy.h | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/ppapi/proxy/ppb_flash_proxy.h b/ppapi/proxy/ppb_flash_proxy.h index 67cf418..4b56875 100644 --- a/ppapi/proxy/ppb_flash_proxy.h +++ b/ppapi/proxy/ppb_flash_proxy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -19,8 +19,6 @@ namespace pp { namespace proxy { struct PPBFlash_DrawGlyphs_Params; -struct SerializedDirEntry; -class SerializedVar; class SerializedVarReturnValue; class PPB_Flash_Proxy : public InterfaceProxy { @@ -46,31 +44,6 @@ class PPB_Flash_Proxy : public InterfaceProxy { void OnMsgGetProxyForURL(PP_Instance instance, const std::string& url, SerializedVarReturnValue result); - void OnMsgOpenModuleLocalFile(PP_Instance instance, - const std::string& path, - int32_t mode, - IPC::PlatformFileForTransit* file_handle, - int32_t* result); - void OnMsgRenameModuleLocalFile(PP_Instance instance, - const std::string& path_from, - const std::string& path_to, - int32_t* result); - void OnMsgDeleteModuleLocalFileOrDir(PP_Instance instance, - const std::string& path, - PP_Bool recursive, - int32_t* result); - void OnMsgCreateModuleLocalDir(PP_Instance instance, - const std::string& path, - int32_t* result); - void OnMsgQueryModuleLocalFile(PP_Instance instance, - const std::string& path, - PP_FileInfo_Dev* info, - int32_t* result); - void OnMsgGetModuleLocalDirContents( - PP_Instance instance, - const std::string& path, - std::vector<pp::proxy::SerializedDirEntry>* entries, - int32_t* result); void OnMsgNavigateToURL(PP_Instance instance, const std::string& url, const std::string& target, |