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

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

Issue 10387195: Open pepper files directly in browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 months 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
===================================================================
--- content/renderer/pepper/pepper_plugin_delegate_impl.h (revision 140544)
+++ content/renderer/pepper/pepper_plugin_delegate_impl.h (working copy)
@@ -42,6 +42,7 @@
}
namespace ppapi {
+class PepperFilePath;
class PPB_X509Certificate_Fields;
}
@@ -52,7 +53,6 @@
namespace webkit {
struct WebPluginInfo;
namespace ppapi {
-class PepperFilePath;
class PluginInstance;
class PluginModule;
}
@@ -251,23 +251,23 @@
virtual void WillUpdateFile(const GURL& file_path) OVERRIDE;
virtual void DidUpdateFile(const GURL& file_path, int64_t delta) OVERRIDE;
virtual base::PlatformFileError OpenFile(
- const webkit::ppapi::PepperFilePath& path,
+ const ppapi::PepperFilePath& path,
int flags,
base::PlatformFile* file) OVERRIDE;
virtual base::PlatformFileError RenameFile(
- const webkit::ppapi::PepperFilePath& from_path,
- const webkit::ppapi::PepperFilePath& to_path) OVERRIDE;
+ const ppapi::PepperFilePath& from_path,
+ const ppapi::PepperFilePath& to_path) OVERRIDE;
virtual base::PlatformFileError DeleteFileOrDir(
- const webkit::ppapi::PepperFilePath& path,
+ const ppapi::PepperFilePath& path,
bool recursive) OVERRIDE;
virtual base::PlatformFileError CreateDir(
- const webkit::ppapi::PepperFilePath& path) OVERRIDE;
+ const ppapi::PepperFilePath& path) OVERRIDE;
virtual base::PlatformFileError QueryFile(
- const webkit::ppapi::PepperFilePath& path,
+ const ppapi::PepperFilePath& path,
base::PlatformFileInfo* info) OVERRIDE;
virtual base::PlatformFileError GetDirContents(
- const webkit::ppapi::PepperFilePath& path,
- webkit::ppapi::DirContents* contents) OVERRIDE;
+ const ppapi::PepperFilePath& path,
+ ppapi::DirContents* contents) OVERRIDE;
virtual void SyncGetFileSystemPlatformPath(
const GURL& url,
FilePath* platform_path) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698