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

Unified Diff: third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.h

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 years 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/core/dom/ContextLifecycleNotifier.h
diff --git a/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.h b/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.h
index 15e46c499cf4b1b02e3852529fbae68baef522dd..4d1d775ed400b96696dccf4d032b9772064005e7 100644
--- a/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.h
+++ b/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.h
@@ -34,7 +34,7 @@
namespace blink {
-class ActiveDOMObject;
+class SuspendableObject;
class ContextLifecycleObserver;
class ExecutionContext;
@@ -43,8 +43,8 @@ class CORE_EXPORT ContextLifecycleNotifier
WTF_MAKE_NONCOPYABLE(ContextLifecycleNotifier);
public:
- void notifyResumingActiveDOMObjects();
- void notifySuspendingActiveDOMObjects();
+ void notifyResumingSuspendableObjects();
+ void notifySuspendingSuspendableObjects();
unsigned activeDOMObjectCount() const;
@@ -57,7 +57,7 @@ class CORE_EXPORT ContextLifecycleNotifier
ContextLifecycleNotifier() {}
#if DCHECK_IS_ON()
- bool contains(ActiveDOMObject*) const;
+ bool contains(SuspendableObject*) const;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698