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

Unified Diff: third_party/WebKit/public/platform/WebTaskRunner.h

Issue 2387113002: reflow comments in public/platform/ (Closed)
Patch Set: 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/public/platform/WebTaskRunner.h
diff --git a/third_party/WebKit/public/platform/WebTaskRunner.h b/third_party/WebKit/public/platform/WebTaskRunner.h
index 48c4ec2ec6f43b0a7b802b68bcd618992603ea8b..c3997edf93925498118ec104038b6191146328d9 100644
--- a/third_party/WebKit/public/platform/WebTaskRunner.h
+++ b/third_party/WebKit/public/platform/WebTaskRunner.h
@@ -58,20 +58,21 @@ class BLINK_PLATFORM_EXPORT WebTaskRunner {
// ---
- // Headless Chrome virtualises time for determinism and performance (fast forwarding
- // of timers). To make this work some parts of blink (e.g. Timers) need to use virtual
- // time, however by default new code should use the normal non-virtual time APIs.
+ // Headless Chrome virtualises time for determinism and performance (fast
+ // forwarding of timers). To make this work some parts of blink (e.g. Timers)
+ // need to use virtual time, however by default new code should use the normal
+ // non-virtual time APIs.
// Returns a double which is the number of seconds since epoch (Jan 1, 1970).
// This may represent either the real time, or a virtual time depending on
- // whether or not the WebTaskRunner is associated with a virtual time domain or a
- // real time domain.
+ // whether or not the WebTaskRunner is associated with a virtual time domain
+ // or a real time domain.
virtual double virtualTimeSeconds() const = 0;
// Returns a microsecond resolution platform dependant time source.
// This may represent either the real time, or a virtual time depending on
- // whether or not the WebTaskRunner is associated with a virtual time domain or a
- // real time domain.
+ // whether or not the WebTaskRunner is associated with a virtual time domain
+ // or a real time domain.
virtual double monotonicallyIncreasingVirtualTimeSeconds() const = 0;
// Returns the underlying task runner object.

Powered by Google App Engine
This is Rietveld 408576698