Index: content/common/browser_rendering_stats.h |
diff --git a/content/common/browser_rendering_stats.h b/content/common/browser_rendering_stats.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c911400509ec320ecdb50693fd86263ec7119a42 |
--- /dev/null |
+++ b/content/common/browser_rendering_stats.h |
@@ -0,0 +1,30 @@ |
+// Copyright (c) 2013 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 CONTENT_COMMON_BROWSER_RENDERING_STATS_H_ |
+#define CONTENT_COMMON_BROWSER_RENDERING_STATS_H_ |
+ |
+#include "base/time.h" |
+#include "cc/debug/rendering_stats.h" |
+#include "content/common/content_export.h" |
+ |
+namespace content { |
+ |
+struct CONTENT_EXPORT BrowserRenderingStats { |
+ BrowserRenderingStats(); |
+ ~BrowserRenderingStats(); |
+ |
+ uint32 input_event_count; |
+ base::TimeDelta total_input_latency; |
+ |
+ // Note: when adding new members, please remember to update enumerateFields |
+ // in browser_rendering_stats.cc. |
+ |
+ // Outputs the fields in this structure to the provided enumerator. |
+ void EnumerateFields(cc::RenderingStats::Enumerator* enumerator) const; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_COMMON_BROWSER_RENDERING_STATS_H_ |