| Index: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| index a209202208975a99bd6531a92c33ed27b2957a76..c09a108ce561d64f41301bdc3f19ada51151d2e5 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| @@ -95,7 +95,7 @@ DOMFileSystem::DOMFileSystem(ExecutionContext* context,
|
| const KURL& rootURL)
|
| : DOMFileSystemBase(context, name, type, rootURL),
|
| ActiveScriptWrappable(this),
|
| - ActiveDOMObject(context),
|
| + SuspendableObject(context),
|
| m_numberOfPendingCallbacks(0),
|
| m_rootEntry(DirectoryEntry::create(this, DOMFilePath::root)) {}
|
|
|
| @@ -194,7 +194,7 @@ void DOMFileSystem::createFile(const FileEntry* fileEntry,
|
|
|
| DEFINE_TRACE(DOMFileSystem) {
|
| DOMFileSystemBase::trace(visitor);
|
| - ActiveDOMObject::trace(visitor);
|
| + SuspendableObject::trace(visitor);
|
| visitor->trace(m_rootEntry);
|
| }
|
|
|
|
|