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

Unified Diff: webkit/tools/test_shell/simple_file_system.h

Issue 4821005: Make FileSystemOperation's lifetime more explicit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: w/o destructive_dispatcher Created 10 years, 1 month 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/tools/test_shell/simple_file_system.h
diff --git a/webkit/tools/test_shell/simple_file_system.h b/webkit/tools/test_shell/simple_file_system.h
index e1a82367912d790711345bb411b57b6d56e310fc..f1add053bf9c7abac5c0e199cbf04bceb39a076b 100644
--- a/webkit/tools/test_shell/simple_file_system.h
+++ b/webkit/tools/test_shell/simple_file_system.h
@@ -17,8 +17,6 @@ class SimpleFileSystem : public WebKit::WebFileSystem {
SimpleFileSystem() {}
virtual ~SimpleFileSystem();
- void RemoveCompletedOperation(int request_id);
-
// WebKit::WebFileSystem methods.
virtual void move(const WebKit::WebString& src_path,
const WebKit::WebString& dest_path,
@@ -52,10 +50,6 @@ class SimpleFileSystem : public WebKit::WebFileSystem {
fileapi::FileSystemOperation* GetNewOperation(
WebKit::WebFileSystemCallbacks* callbacks);
- // Keeps ongoing file system operations.
- typedef IDMap<fileapi::FileSystemOperation, IDMapOwnPointer> OperationsMap;
- OperationsMap operations_;
-
DISALLOW_COPY_AND_ASSIGN(SimpleFileSystem);
};

Powered by Google App Engine
This is Rietveld 408576698