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

Unified Diff: cc/debug/rendering_stats_instrumentation.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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 | « cc/debug/rendering_stats.cc ('k') | cc/debug/rendering_stats_instrumentation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/rendering_stats_instrumentation.h
diff --git a/cc/debug/rendering_stats_instrumentation.h b/cc/debug/rendering_stats_instrumentation.h
new file mode 100644
index 0000000000000000000000000000000000000000..6861202e384932e030c552daf1fd33d90d646e6f
--- /dev/null
+++ b/cc/debug/rendering_stats_instrumentation.h
@@ -0,0 +1,71 @@
+// Copyright 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 CC_DEBUG_RENDERING_STATS_INSTRUMENTATION_H_
+#define CC_DEBUG_RENDERING_STATS_INSTRUMENTATION_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/synchronization/lock.h"
+#include "cc/debug/rendering_stats.h"
+
+namespace cc {
+
+// RenderingStatsInstrumentation is shared among threads and manages conditional
+// recording of rendering stats into a private RenderingStats instance.
+class RenderingStatsInstrumentation {
+ public:
+ static scoped_ptr<RenderingStatsInstrumentation> Create();
+ virtual ~RenderingStatsInstrumentation();
+
+ // Return copy of current impl thread rendering stats.
+ RenderingStats impl_thread_rendering_stats();
+
+ // Return the accumulated, combined rendering stats.
+ RenderingStats GetRenderingStats();
+
+ // Add current impl thread rendering stats to accumulator and
+ // clear current stats.
+ void AccumulateAndClearImplThreadStats();
+
+ // Read and write access to the record_rendering_stats_ flag is not locked to
+ // improve performance. The flag is commonly turned off and hardly changes
+ // it's value during runtime.
+ bool record_rendering_stats() const { return record_rendering_stats_; }
+ void set_record_rendering_stats(bool record_rendering_stats) {
+ if (record_rendering_stats_ != record_rendering_stats)
+ record_rendering_stats_ = record_rendering_stats;
+ }
+
+ base::TimeDelta StartRecording() const;
+ base::TimeDelta EndRecording(base::TimeDelta start_time) const;
+
+ void IncrementFrameCount(int64 count);
+ void AddVisibleContentArea(int64 area);
+ void AddApproximatedVisibleContentArea(int64 area);
+ void AddDrawDuration(base::TimeDelta draw_duration,
+ base::TimeDelta draw_duration_estimate);
+ void AddBeginMainFrameToCommitDuration(
+ base::TimeDelta begin_main_frame_to_commit_duration,
+ base::TimeDelta begin_main_frame_to_commit_duration_estimate);
+ void AddCommitToActivateDuration(
+ base::TimeDelta commit_to_activate_duration,
+ base::TimeDelta commit_to_activate_duration_estimate);
+
+ protected:
+ RenderingStatsInstrumentation();
+
+ private:
+ RenderingStats impl_thread_rendering_stats_;
+ RenderingStats impl_thread_rendering_stats_accu_;
+
+ bool record_rendering_stats_;
+
+ base::Lock lock_;
+
+ DISALLOW_COPY_AND_ASSIGN(RenderingStatsInstrumentation);
+};
+
+} // namespace cc
+
+#endif // CC_DEBUG_RENDERING_STATS_INSTRUMENTATION_H_
« no previous file with comments | « cc/debug/rendering_stats.cc ('k') | cc/debug/rendering_stats_instrumentation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698