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

Side by Side Diff: Source/core/dom/IdleCallbackDeadline.cpp

Issue 1316323002: Remove redundant DocumentLoadTiming references. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove redundant doc-time baselining Created 5 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/IdleCallbackDeadline.h ('k') | Source/core/dom/ScriptedIdleTaskController.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/dom/IdleCallbackDeadline.h" 6 #include "core/dom/IdleCallbackDeadline.h"
7 7
8 #include "core/loader/DocumentLoadTiming.h"
9 #include "wtf/CurrentTime.h" 8 #include "wtf/CurrentTime.h"
10 9
11 namespace blink { 10 namespace blink {
12 11
13 IdleCallbackDeadline::IdleCallbackDeadline(double deadlineMillis, CallbackType c allbackType, const DocumentLoadTiming& timing) 12 IdleCallbackDeadline::IdleCallbackDeadline(double deadlineSeconds, CallbackType callbackType)
14 : m_deadlineMillis(deadlineMillis) 13 : m_deadlineSeconds(deadlineSeconds)
15 , m_callbackType(callbackType) 14 , m_callbackType(callbackType)
16 , m_timing(timing)
17 { 15 {
18 } 16 }
19 17
20 double IdleCallbackDeadline::timeRemaining() const 18 double IdleCallbackDeadline::timeRemaining() const
21 { 19 {
22 double timeRemaining = m_deadlineMillis - (1000 * m_timing.monotonicTimeToZe roBasedDocumentTime(monotonicallyIncreasingTime())); 20 double timeRemaining = m_deadlineSeconds - monotonicallyIncreasingTime();
23 if (timeRemaining < 0) 21 if (timeRemaining < 0)
24 timeRemaining = 0; 22 timeRemaining = 0;
25 return timeRemaining; 23
24 return timeRemaining * 1000;
26 } 25 }
27 26
28 } // namespace blink 27 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/IdleCallbackDeadline.h ('k') | Source/core/dom/ScriptedIdleTaskController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698