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

Unified Diff: chrome/browser/performance_monitor/event.cc

Issue 547063003: Remove the unmaintained performance monitor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt to fix GN Created 6 years, 3 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: chrome/browser/performance_monitor/event.cc
diff --git a/chrome/browser/performance_monitor/event.cc b/chrome/browser/performance_monitor/event.cc
deleted file mode 100644
index 46b48b999900f5259a4463ffe1e514a8b935f23d..0000000000000000000000000000000000000000
--- a/chrome/browser/performance_monitor/event.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright (c) 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.
-
-#include "chrome/browser/performance_monitor/event.h"
-
-#include "base/logging.h"
-
-namespace performance_monitor {
-
-Event::Event(const EventType& type,
- const base::Time& time,
- scoped_ptr<base::DictionaryValue> data)
- : type_(type), time_(time), data_(data.release()) {
-}
-
-Event::~Event() {
-}
-
-scoped_ptr<Event> Event::FromValue(scoped_ptr<base::DictionaryValue> data) {
- int type = 0;
- if (!data->GetInteger(std::string("eventType"), &type))
- return scoped_ptr<Event>();
- double time = 0.0;
- if (!data->GetDouble(std::string("time"), &time))
- return scoped_ptr<Event>();
- return scoped_ptr<Event>(new Event(static_cast<EventType>(type),
- base::Time::FromInternalValue((int64)time),
- data.Pass()));
-}
-
-} // namespace performance_monitor

Powered by Google App Engine
This is Rietveld 408576698