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

Unified Diff: Source/modules/filesystem/DOMWindowFileSystem.h

Issue 15127005: Make filesystem objects ScriptWrappable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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: Source/modules/filesystem/DOMWindowFileSystem.h
diff --git a/Source/modules/filesystem/DOMWindowFileSystem.h b/Source/modules/filesystem/DOMWindowFileSystem.h
index 891f9ffaaffa6df2b57aa5070631e12bb34b8ba8..5e78d6ec7b0d7aa27a6ff133fcde4afd170f561a 100644
--- a/Source/modules/filesystem/DOMWindowFileSystem.h
+++ b/Source/modules/filesystem/DOMWindowFileSystem.h
@@ -26,6 +26,7 @@
#ifndef DOMWindowFileSystem_h
#define DOMWindowFileSystem_h
+#include "bindings/v8/ScriptWrappable.h"
#include "wtf/PassRefPtr.h"
#include "wtf/text/WTFString.h"
@@ -36,9 +37,8 @@ class EntryCallback;
class ErrorCallback;
class FileSystemCallback;
-class DOMWindowFileSystem {
+class DOMWindowFileSystem : public ScriptWrappable {
abarth-chromium 2013/05/14 00:38:13 This doesn't make sense. This object is never wra
Tom Sepez 2013/05/14 18:21:51 Ah. I'd wondered about these where there are only
public:
-
static void webkitRequestFileSystem(DOMWindow*, int type, long long size, PassRefPtr<FileSystemCallback>, PassRefPtr<ErrorCallback>);
static void webkitResolveLocalFileSystemURL(DOMWindow*, const String&, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>);

Powered by Google App Engine
This is Rietveld 408576698