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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp

Issue 2618753002: Revert of Prefer using ContextClient over ContextLifecycleObserver (Closed)
Patch Set: Created 3 years, 11 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: 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 eec1bfcd23b99fe2776f5fb1f5239a521cc39391..619f3c801317714b8dd2909811cfdfc35c28e272 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
@@ -92,7 +92,7 @@
FileSystemType type,
const KURL& rootURL)
: DOMFileSystemBase(context, name, type, rootURL),
- ContextClient(context),
+ ContextLifecycleObserver(context),
m_numberOfPendingCallbacks(0),
m_rootEntry(DirectoryEntry::create(this, DOMFilePath::root)) {}
@@ -191,7 +191,7 @@
DEFINE_TRACE(DOMFileSystem) {
DOMFileSystemBase::trace(visitor);
- ContextClient::trace(visitor);
+ ContextLifecycleObserver::trace(visitor);
visitor->trace(m_rootEntry);
}

Powered by Google App Engine
This is Rietveld 408576698