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

Unified Diff: chrome/browser/chromeos/drive/event_logger.h

Issue 11365249: drive: Event logger for chrome:drive-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix (#5) Created 8 years, 1 month 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/chromeos/drive/event_logger.h
diff --git a/chrome/browser/chromeos/drive/event_logger.h b/chrome/browser/chromeos/drive/event_logger.h
new file mode 100644
index 0000000000000000000000000000000000000000..e0341088aa29032e621c7428e4c9aabc9ea2f8cb
--- /dev/null
+++ b/chrome/browser/chromeos/drive/event_logger.h
@@ -0,0 +1,48 @@
+// 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.
+
+#ifndef CHROME_BROWSER_CHROMEOS_DRIVE_EVENT_LOGGER_H_
+#define CHROME_BROWSER_CHROMEOS_DRIVE_EVENT_LOGGER_H_
+
+#include <string>
+#include <deque>
+
+#include "base/basictypes.h"
+#include "base/time.h"
+
+namespace drive {
+
+// EventLogger is used to expose text messages to chrome:drive-internals,
+// for diagnosing the behavior of the Drive client.
+class EventLogger {
+ public:
+ // Represents a single event log.
+ struct Event {
+ Event(int id, const std::string& what);
+ int id; // Monotonically increasing ID starting from 0.
+ base::Time when; // When the event occurred.
+ std::string what; // What happened.
+ };
+
+ // Creates an event logger that keeps the latest |history_size| events.
+ explicit EventLogger(size_t history_size);
+ ~EventLogger();
+
+ // Logs a message.
+ void Log(const std::string& what);
+
+ // Gets the list of latest events (the oldest event comes first).
+ const std::deque<Event>& history() const { return history_; }
+
+ private:
+ std::deque<Event> history_;
+ const size_t history_size_;
+ int next_event_id_;
+
+ DISALLOW_COPY_AND_ASSIGN(EventLogger);
+};
+
+} // namespace drive
+
+#endif // CHROME_BROWSER_CHROMEOS_DRIVE_EVENT_LOGGER_H_
« no previous file with comments | « chrome/browser/chromeos/drive/drive_system_service.cc ('k') | chrome/browser/chromeos/drive/event_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698