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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2556993005: [blink] Split TaskType::Internal into InternalTimer and InternalLoading. (Closed)
Patch Set: One more fix 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/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 88bfd295adafbfa2a186dd6f3f0695d5961b2976..afc2c2d1a7c01017ba577001b3a90bf0dece4a2d 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -156,12 +156,14 @@ FrameView::FrameView(LocalFrame& frame)
m_canHaveScrollbars(true),
m_hasPendingLayout(false),
m_inSynchronousPostLayout(false),
- m_postLayoutTasksTimer(TaskRunnerHelper::get(TaskType::Internal, &frame),
- this,
- &FrameView::postLayoutTimerFired),
- m_updateWidgetsTimer(TaskRunnerHelper::get(TaskType::Internal, &frame),
- this,
- &FrameView::updateWidgetsTimerFired),
+ m_postLayoutTasksTimer(
+ TaskRunnerHelper::get(TaskType::UnspecedTimer, &frame),
+ this,
+ &FrameView::postLayoutTimerFired),
+ m_updateWidgetsTimer(
+ TaskRunnerHelper::get(TaskType::UnspecedTimer, &frame),
+ this,
+ &FrameView::updateWidgetsTimerFired),
m_isTransparent(false),
m_baseBackgroundColor(Color::white),
m_mediaType(MediaTypeNames::screen),
« no previous file with comments | « third_party/WebKit/Source/core/dom/TaskRunnerHelper.cpp ('k') | third_party/WebKit/Source/core/input/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698