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

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

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 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/core/dom/ExecutionContext.h
diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.h b/third_party/WebKit/Source/core/dom/ExecutionContext.h
index 51cfc4089ec84826766108d4eb808eaad95e600f..2c79593ab3f806dbc12539581b7e87c0bed7863c 100644
--- a/third_party/WebKit/Source/core/dom/ExecutionContext.h
+++ b/third_party/WebKit/Source/core/dom/ExecutionContext.h
@@ -94,11 +94,11 @@ class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier,
virtual void disableEval(const String& errorMessage) = 0;
virtual LocalDOMWindow* executingWindow() const { return 0; }
virtual String userAgent() const = 0;
+ // Executes the task on context's thread asynchronously.
virtual void postTask(
const WebTraceLocation&,
std::unique_ptr<ExecutionContextTask>,
- const String& taskNameForInstrumentation =
- emptyString()) = 0; // Executes the task on context's thread asynchronously.
+ const String& taskNameForInstrumentation = emptyString()) = 0;
// Gets the DOMTimerCoordinator which maintains the "active timer
// list" of tasks created by setTimeout and setInterval. The
@@ -141,7 +141,8 @@ class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier,
return m_activeDOMObjectsAreStopped;
}
- // Called after the construction of an ActiveDOMObject to synchronize suspend state.
+ // Called after the construction of an ActiveDOMObject to synchronize suspend
+ // state.
void suspendActiveDOMObjectIfNeeded(ActiveDOMObject*);
// Gets the next id in a circular sequence from 1 to 2^31-1.
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExceptionCode.h ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698