Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2368)

Unified Diff: content/renderer/pepper/pepper_plugin_delegate_impl.h

Issue 11437038: Revert 171408 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/pepper/pepper_plugin_delegate_impl.h
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.h b/content/renderer/pepper/pepper_plugin_delegate_impl.h
index 700bbef3803131b53ac0b312e8b8b3a64a68103e..d88a6723006d762c7bbd0f57ac6d64176c5d37a6 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.h
@@ -240,6 +240,26 @@ class PepperPluginDelegateImpl
const AvailableSpaceCallback& callback) OVERRIDE;
virtual void WillUpdateFile(const GURL& file_path) OVERRIDE;
virtual void DidUpdateFile(const GURL& file_path, int64_t delta) OVERRIDE;
+ virtual base::PlatformFileError OpenFile(
+ const ppapi::PepperFilePath& path,
+ int flags,
+ base::PlatformFile* file) OVERRIDE;
+ virtual base::PlatformFileError RenameFile(
+ const ppapi::PepperFilePath& from_path,
+ const ppapi::PepperFilePath& to_path) OVERRIDE;
+ virtual base::PlatformFileError DeleteFileOrDir(
+ const ppapi::PepperFilePath& path,
+ bool recursive) OVERRIDE;
+ virtual base::PlatformFileError CreateDir(
+ const ppapi::PepperFilePath& path) OVERRIDE;
+ virtual base::PlatformFileError QueryFile(
+ const ppapi::PepperFilePath& path,
+ base::PlatformFileInfo* info) OVERRIDE;
+ virtual base::PlatformFileError GetDirContents(
+ const ppapi::PepperFilePath& path,
+ ppapi::DirContents* contents) OVERRIDE;
+ virtual base::PlatformFileError CreateTemporaryFile(
+ base::PlatformFile* file) OVERRIDE;
virtual void SyncGetFileSystemPlatformPath(
const GURL& url,
FilePath* platform_path) OVERRIDE;
« no previous file with comments | « content/public/browser/content_browser_client.cc ('k') | content/renderer/pepper/pepper_plugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698