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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

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: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 80cf90b95b2f34c810aea71f76802254895d6aa6..a0512a7b5ef055a9f18e8995c00776be2a87463b 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -173,30 +173,22 @@ GURL MockPluginDelegate::GetFileSystemRootUrl(
return GURL();
}
-bool MockPluginDelegate::OpenFileSystem(
- const GURL& origin_url,
- fileapi::FileSystemType type,
- long long size,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
- return false;
-}
-
bool MockPluginDelegate::MakeDirectory(
const GURL& path,
bool recursive,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const StatusCallback& callback) {
return false;
}
bool MockPluginDelegate::Query(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const MetadataCallback& callback) {
return false;
}
bool MockPluginDelegate::ReadDirectoryEntries(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const ReadDirectoryCallback& callback) {
return false;
}
@@ -204,33 +196,33 @@ bool MockPluginDelegate::Touch(
const GURL& path,
const base::Time& last_access_time,
const base::Time& last_modified_time,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const StatusCallback& callback) {
return false;
}
bool MockPluginDelegate::SetLength(
const GURL& path,
int64_t length,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const StatusCallback& callback) {
return false;
}
bool MockPluginDelegate::Delete(
const GURL& path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const StatusCallback& callback) {
return false;
}
bool MockPluginDelegate::Rename(
const GURL& file_path,
const GURL& new_file_path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const StatusCallback& callback) {
return false;
}
bool MockPluginDelegate::ReadDirectory(
const GURL& directory_path,
- fileapi::FileSystemCallbackDispatcher* dispatcher) {
+ const ReadDirectoryCallback& callback) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698