| Index: third_party/WebKit/Source/core/frame/DOMTimer.h
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMTimer.h b/third_party/WebKit/Source/core/frame/DOMTimer.h
|
| index 2f246738d970042d1bce88a3e6cc913d294aab72..d6c5d0b4df84828ef7a7b3219d658612612bcc3e 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMTimer.h
|
| +++ b/third_party/WebKit/Source/core/frame/DOMTimer.h
|
| @@ -43,7 +43,8 @@ class CORE_EXPORT DOMTimer final : public GarbageCollectedFinalized<DOMTimer>,
|
| USING_GARBAGE_COLLECTED_MIXIN(DOMTimer);
|
|
|
| public:
|
| - // Creates a new timer owned by the ExecutionContext, starts it and returns its ID.
|
| + // Creates a new timer owned by the ExecutionContext, starts it and returns
|
| + // its ID.
|
| static int install(ExecutionContext*,
|
| ScheduledAction*,
|
| int timeout,
|
| @@ -56,9 +57,9 @@ class CORE_EXPORT DOMTimer final : public GarbageCollectedFinalized<DOMTimer>,
|
| void contextDestroyed() override;
|
|
|
| // Eager finalization is needed to promptly stop this Timer object.
|
| - // Otherwise timer events might fire at an object that's slated for destruction
|
| - // (when lazily swept), but some of its members (m_action) may already have
|
| - // been finalized & must not be accessed.
|
| + // Otherwise timer events might fire at an object that's slated for
|
| + // destruction (when lazily swept), but some of its members (m_action) may
|
| + // already have been finalized & must not be accessed.
|
| EAGERLY_FINALIZE();
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|