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

Unified Diff: content/browser/fileapi/fileapi_message_filter.h

Issue 10828043: Wire up the deleteFileSystem operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adds comment. Created 8 years, 5 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
« no previous file with comments | « no previous file | content/browser/fileapi/fileapi_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/fileapi/fileapi_message_filter.h
diff --git a/content/browser/fileapi/fileapi_message_filter.h b/content/browser/fileapi/fileapi_message_filter.h
index c7f49e5deac4948ab0e2487f334813dbf3c04d65..dc2ab545944d9cb741dc1aa07bd8c89d814ea9c0 100644
--- a/content/browser/fileapi/fileapi_message_filter.h
+++ b/content/browser/fileapi/fileapi_message_filter.h
@@ -78,6 +78,9 @@ class FileAPIMessageFilter : public content::BrowserMessageFilter {
fileapi::FileSystemType type,
int64 requested_size,
bool create);
+ void OnDeleteFileSystem(int request_id,
+ const GURL& origin_url,
+ fileapi::FileSystemType type);
void OnMove(int request_id,
const GURL& src_path,
const GURL& dest_path);
@@ -146,6 +149,8 @@ class FileAPIMessageFilter : public content::BrowserMessageFilter {
base::PlatformFileError result,
const std::string& name,
const GURL& root);
+ void DidDeleteFileSystem(int request_id,
+ base::PlatformFileError result);
void DidCreateSnapshot(
int request_id,
const base::Callback<void(const FilePath&)>& register_file_callback,
« no previous file with comments | « no previous file | content/browser/fileapi/fileapi_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698