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

Unified Diff: cc/debug/latency_info.cc

Issue 14999012: Move cc/debug/latency_info to ui/base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/latency_info.h ('k') | cc/output/compositor_frame_metadata.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/latency_info.cc
diff --git a/cc/debug/latency_info.cc b/cc/debug/latency_info.cc
deleted file mode 100644
index f59b07bc57934b22b141d5bdb5544a6f0b604f3c..0000000000000000000000000000000000000000
--- a/cc/debug/latency_info.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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.
-
-#include "cc/debug/latency_info.h"
-
-#include <algorithm>
-
-namespace cc {
-
-LatencyInfo::LatencyInfo() {
-}
-
-LatencyInfo::~LatencyInfo() {
-}
-
-void LatencyInfo::MergeWith(const LatencyInfo& other) {
- for (LatencyMap::const_iterator b = other.latency_components.begin();
- b != other.latency_components.end(); ++b) {
- AddLatencyNumberWithTimestamp(b->first.first, b->first.second,
- b->second.sequence_number,
- b->second.event_time,
- b->second.event_count);
- }
-}
-
-void LatencyInfo::AddLatencyNumber(LatencyComponentType component,
- int64 id, int64 component_sequence_number) {
- AddLatencyNumberWithTimestamp(component, id, component_sequence_number,
- base::TimeTicks::Now(), 1);
-}
-
-void LatencyInfo::AddLatencyNumberWithTimestamp(
- LatencyComponentType component, int64 id, int64 component_sequence_number,
- base::TimeTicks time, uint32 event_count) {
- LatencyMap::key_type key = std::make_pair(component, id);
- LatencyMap::iterator f = latency_components.find(key);
- if (f == latency_components.end()) {
- LatencyComponent info = {component_sequence_number, time, event_count};
- latency_components[key] = info;
- } else {
- f->second.sequence_number = std::max(component_sequence_number,
- f->second.sequence_number);
- uint32 new_count = event_count + f->second.event_count;
- if (event_count > 0 && new_count != 0) {
- // Do a weighted average, so that the new event_time is the average of
- // the times of events currently in this structure with the time passed
- // into this method.
- f->second.event_time += (time - f->second.event_time) * event_count /
- new_count;
- f->second.event_count = new_count;
- }
- }
-}
-
-void LatencyInfo::Clear() {
- latency_components.clear();
-}
-
-} // namespace cc
-
« no previous file with comments | « cc/debug/latency_info.h ('k') | cc/output/compositor_frame_metadata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698