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

Unified Diff: sky/engine/public/web/WebBeginFrameArgs.h

Issue 1210153009: Remove (almost all of) //sky/engine/web (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « sky/engine/public/README ('k') | sky/engine/public/web/WebCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/public/web/WebBeginFrameArgs.h
diff --git a/sky/engine/public/web/WebBeginFrameArgs.h b/sky/engine/public/web/WebBeginFrameArgs.h
deleted file mode 100644
index a1123c4409d32ef78fefe1ca932843a5795b96c5..0000000000000000000000000000000000000000
--- a/sky/engine/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 SKY_ENGINE_PUBLIC_WEB_WEBBEGINFRAMEARGS_H_
-#define SKY_ENGINE_PUBLIC_WEB_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 // SKY_ENGINE_PUBLIC_WEB_WEBBEGINFRAMEARGS_H_
« no previous file with comments | « sky/engine/public/README ('k') | sky/engine/public/web/WebCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698