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

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 2f178efe85eb061846b7e6e397366434639c2e1c..43fcff7615bac589ad1e819334c37a2d27b1743d 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.h
@@ -215,32 +215,32 @@ 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& callback) OVERRIDE;
virtual bool ReadDirectoryEntries(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE;
+ const ReadDirectoryCallback& 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& callback) OVERRIDE;
virtual void QueryAvailableSpace(
const GURL& origin,
quota::StorageType type,

Powered by Google App Engine
This is Rietveld 408576698