| 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 | 
| }; | 
|  | 
|  |