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

Unified Diff: webkit/compositor_bindings/web_latency_info_impl.h

Issue 11293121: Add latency measurement system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: create cc::LatencyInfo Created 7 years, 12 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: webkit/compositor_bindings/web_latency_info_impl.h
diff --git a/webkit/compositor_bindings/web_latency_info_impl.h b/webkit/compositor_bindings/web_latency_info_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..2ff21fbbec032776871351ca3f81948b0ef415e6
--- /dev/null
+++ b/webkit/compositor_bindings/web_latency_info_impl.h
@@ -0,0 +1,24 @@
+// Copyright 2012 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 WEB_LATENCY_INFO_IMPL_H_
+#define WEB_LATENCY_INFO_IMPL_H_
+
+#include "base/time.h"
+#include "cc/latency_info.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/WebLatencyInfo.h"
+
+namespace WebKit {
+
+struct WebLatencyInfoImpl : public WebLatencyInfo {
+ cc::LatencyInfo latency_info;
+
+ WebLatencyInfoImpl()
+ {
+ }
+};
+
+} // namespace WebKit
+
+#endif // WEB_LATENCY_INFO_IMPL_H_
« no previous file with comments | « webkit/compositor_bindings/compositor_bindings.gyp ('k') | webkit/compositor_bindings/web_layer_tree_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698