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

Unified Diff: Source/modules/filesystem/Entry.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/Entry.h
diff --git a/Source/modules/filesystem/Entry.h b/Source/modules/filesystem/Entry.h
index 27a86faf8e933f583fcb65025d0e32d38429016d..53e5c19d06e78ad59460863e518b63199ec9ab67 100644
--- a/Source/modules/filesystem/Entry.h
+++ b/Source/modules/filesystem/Entry.h
@@ -31,6 +31,7 @@
#ifndef Entry_h
#define Entry_h
+#include "bindings/v8/ScriptWrappable.h"
#include "modules/filesystem/DOMFileSystem.h"
#include "modules/filesystem/EntryBase.h"
#include "wtf/PassRefPtr.h"
@@ -45,7 +46,7 @@ class ErrorCallback;
class MetadataCallback;
class VoidCallback;
-class Entry : public EntryBase {
+class Entry : public ScriptWrappable, public EntryBase {
abarth-chromium 2013/05/14 00:38:13 Same here. What the deal with these "base" object
Tom Sepez 2013/05/14 18:21:51 Implementation details. Not an interface, therefo
public:
DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fileSystem.get()); }

Powered by Google App Engine
This is Rietveld 408576698