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

Unified Diff: third_party/WebKit/Source/platform/Timer.h

Issue 2388303002: reflow comments in 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
« no previous file with comments | « third_party/WebKit/Source/platform/Theme.h ('k') | third_party/WebKit/Source/platform/Timer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/Timer.h
diff --git a/third_party/WebKit/Source/platform/Timer.h b/third_party/WebKit/Source/platform/Timer.h
index 68aad6164d283980ef49201155328b3c560c178a..33d5af85e7ea1d4081a6b65ef5f104a816f95f6c 100644
--- a/third_party/WebKit/Source/platform/Timer.h
+++ b/third_party/WebKit/Source/platform/Timer.h
@@ -151,8 +151,9 @@ class TaskRunnerTimer : public TimerBase {
}
private:
- // FIXME: Oilpan: TimerBase should be moved to the heap and m_object should be traced.
- // This raw pointer is safe as long as Timer<X> is held by the X itself (That's the case
+ // FIXME: Oilpan: TimerBase should be moved to the heap and m_object should be
+ // traced. This raw pointer is safe as long as Timer<X> is held by the X
+ // itself (That's the case
// in the current code base).
GC_PLUGIN_IGNORE("363031")
TimerFiredClass* m_object;
@@ -175,8 +176,9 @@ class Timer : public TaskRunnerTimer<TimerFiredClass> {
timerFiredFunction) {}
};
-// This subclass of Timer posts its tasks on the current thread's default task runner.
-// Tasks posted on there are not throttled when the tab is in the background.
+// This subclass of Timer posts its tasks on the current thread's default task
+// runner. Tasks posted on there are not throttled when the tab is in the
+// background.
template <typename TimerFiredClass>
class UnthrottledThreadTimer : public TaskRunnerTimer<TimerFiredClass> {
public:
« no previous file with comments | « third_party/WebKit/Source/platform/Theme.h ('k') | third_party/WebKit/Source/platform/Timer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698