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

Unified Diff: third_party/WebKit/Source/core/frame/SuspendableTimer.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/frame/SuspendableTimer.h
diff --git a/third_party/WebKit/Source/core/frame/SuspendableTimer.h b/third_party/WebKit/Source/core/frame/SuspendableTimer.h
index 01cd04d19a8d794193e09561261b93257c4587df..5ae6ca58344e4062124d1ed86cf21e11bd0bb158 100644
--- a/third_party/WebKit/Source/core/frame/SuspendableTimer.h
+++ b/third_party/WebKit/Source/core/frame/SuspendableTimer.h
@@ -28,17 +28,18 @@
#define SuspendableTimer_h
#include "core/CoreExport.h"
-#include "core/dom/ActiveDOMObject.h"
+#include "core/dom/SuspendableObject.h"
#include "platform/Timer.h"
namespace blink {
-class CORE_EXPORT SuspendableTimer : public TimerBase, public ActiveDOMObject {
+class CORE_EXPORT SuspendableTimer : public TimerBase,
+ public SuspendableObject {
public:
explicit SuspendableTimer(ExecutionContext*);
~SuspendableTimer() override;
- // ActiveDOMObject
+ // SuspendableObject
void contextDestroyed() override;
void suspend() final;
void resume() final;

Powered by Google App Engine
This is Rietveld 408576698