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

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

Issue 14796018: Cleanup: Deprecate FileSystemCallbackDispatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.h b/content/renderer/pepper/pepper_plugin_delegate_impl.h
index c694d54f9d43aaf4c234230be9c85b34e237be71..40dabeef06ee4b26d89d52b89b2324e489d046c5 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.h
@@ -215,32 +215,35 @@ class PepperPluginDelegateImpl
virtual bool MakeDirectory(
const GURL& path,
bool recursive,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const StatusCallback& callback) OVERRIDE;
virtual bool Query(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const MetadataCallback& success_callback,
+ const StatusCallback& error_callback) OVERRIDE;
virtual bool ReadDirectoryEntries(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const ReadDirectoryCallback& success_callback,
+ const StatusCallback& error_callback) OVERRIDE;
virtual bool Touch(
const GURL& path,
const base::Time& last_access_time,
const base::Time& last_modified_time,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const StatusCallback& callback) OVERRIDE;
virtual bool SetLength(
const GURL& path,
int64_t length,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const StatusCallback& callback) OVERRIDE;
virtual bool Delete(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const StatusCallback& callback) OVERRIDE;
virtual bool Rename(
const GURL& file_path,
const GURL& new_file_path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const StatusCallback& callback) OVERRIDE;
virtual bool ReadDirectory(
const GURL& directory_path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const ReadDirectoryCallback& success_callback,
+ const StatusCallback& error_callback) OVERRIDE;
virtual void QueryAvailableSpace(
const GURL& origin,
quota::StorageType type,
« no previous file with comments | « content/renderer/pepper/pepper_file_system_host.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