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

Unified Diff: cc/debug/rendering_stats.h

Issue 1535833002: Delete CC. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-5
Patch Set: rebase Created 4 years, 11 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 | « cc/debug/paint_time_counter.cc ('k') | cc/debug/rendering_stats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/rendering_stats.h
diff --git a/cc/debug/rendering_stats.h b/cc/debug/rendering_stats.h
deleted file mode 100644
index 63c69a8f0a00069a608d67fabb7ed5a77563d4f9..0000000000000000000000000000000000000000
--- a/cc/debug/rendering_stats.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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 CC_DEBUG_RENDERING_STATS_H_
-#define CC_DEBUG_RENDERING_STATS_H_
-
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/time/time.h"
-#include "base/trace_event/trace_event_argument.h"
-#include "base/values.h"
-#include "cc/debug/traced_value.h"
-
-namespace cc {
-
-struct RenderingStats {
- // Stores a sequence of TimeDelta objects.
- class TimeDeltaList {
- public:
- TimeDeltaList();
- ~TimeDeltaList();
-
- void Append(base::TimeDelta value);
- void AddToTracedValue(const char* name,
- base::trace_event::TracedValue* list_value) const;
-
- void Add(const TimeDeltaList& other);
-
- base::TimeDelta GetLastTimeDelta() const;
-
- private:
- std::vector<base::TimeDelta> values;
- };
-
- RenderingStats();
- ~RenderingStats();
-
- // Note: when adding new members, please remember to update Add in
- // rendering_stats.cc.
-
- int64 frame_count;
- int64 visible_content_area;
- int64 approximated_visible_content_area;
-
- TimeDeltaList draw_duration;
- TimeDeltaList draw_duration_estimate;
- TimeDeltaList begin_main_frame_to_commit_duration;
- TimeDeltaList begin_main_frame_to_commit_duration_estimate;
- TimeDeltaList commit_to_activate_duration;
- TimeDeltaList commit_to_activate_duration_estimate;
-
- scoped_refptr<base::trace_event::ConvertableToTraceFormat> AsTraceableData()
- const;
- void Add(const RenderingStats& other);
-};
-
-} // namespace cc
-
-#endif // CC_DEBUG_RENDERING_STATS_H_
« no previous file with comments | « cc/debug/paint_time_counter.cc ('k') | cc/debug/rendering_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698