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

Unified Diff: public/web/WebBeginFrameArgs.h

Issue 540373002: Add support for Low Priorirty tasks. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Maybe fix linker issue Created 6 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 side-by-side diff with in-line comments
Download patch
Index: public/web/WebBeginFrameArgs.h
diff --git a/public/web/WebBeginFrameArgs.h b/public/web/WebBeginFrameArgs.h
deleted file mode 100644
index 54a75f9a76ad3076329a7d8aa770ec86e83b7fab..0000000000000000000000000000000000000000
--- a/public/web/WebBeginFrameArgs.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WebBeginFrameArgs_h
-#define WebBeginFrameArgs_h
-
-namespace blink {
-
-struct WebBeginFrameArgs {
- WebBeginFrameArgs(double lastFrameTimeMonotonic, double deadline, double interval)
- : lastFrameTimeMonotonic(lastFrameTimeMonotonic)
- , deadline(deadline)
- , interval(interval)
- { }
-
- // TODO: Remove this constructor once Chromium has been updated.
- WebBeginFrameArgs(double lastFrameTimeMonotonic)
- : lastFrameTimeMonotonic(lastFrameTimeMonotonic)
- , deadline(0)
- , interval(0)
- { }
-
- // FIXME: Upgrade the time in CLOCK_MONOTONIC values to use a TimeTick like
- // class rather than a bare double.
-
- // FIXME: Extend this class to include the fields from Chrome
- // BeginFrameArgs structure.
-
- // Time in CLOCK_MONOTONIC that is the most recent vsync time.
- double lastFrameTimeMonotonic;
-
- // Time in CLOCK_MONOTONIC by which the renderer should finish producing the current frame. 0 means a deadline wasn't set.
- double deadline;
-
- // Expected delta between two successive frame times. 0 if a regular interval isn't available.
- double interval;
-};
-
-} // namespace blink
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698