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

Unified Diff: chrome/browser/chromeos/system_logs/dbus_log_source.cc

Issue 11363173: Add DBusStatistics and DBusLogSource to log and show dbus stats (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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/system_logs/dbus_log_source.cc
diff --git a/chrome/browser/chromeos/system_logs/dbus_log_source.cc b/chrome/browser/chromeos/system_logs/dbus_log_source.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bed65eb730cbabad9783b75b4548b981d1fd4837
--- /dev/null
+++ b/chrome/browser/chromeos/system_logs/dbus_log_source.cc
@@ -0,0 +1,32 @@
+// 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/chromeos/system_logs/dbus_log_source.h"
+
+#include "chrome/browser/chromeos/system_logs/system_logs_fetcher.h"
+#include "content/public/browser/browser_thread.h"
+#include "dbus/dbus_statistics.h"
+
+namespace chromeos {
+
+namespace {
+const char kDBusLogEntryShort[] = "dbus_summary";
+const char kDBusLogEntryLong[] = "dbus_details";
+}
+
+void DBusLogSource::Fetch(const SysLogsSourceCallback& callback) {
+ DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ DCHECK(!callback.is_null());
+
+ SystemLogsResponse response;
+ response[kDBusLogEntryShort] = dbus::statistics::GetAsString(
+ dbus::statistics::SHOW_INTERFACE,
+ dbus::statistics::FORMAT_ALL);
+ response[kDBusLogEntryLong] = dbus::statistics::GetAsString(
+ dbus::statistics::SHOW_METHOD,
+ dbus::statistics::FORMAT_TOTALS);
+ callback.Run(&response);
+}
+
+} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/system_logs/dbus_log_source.h ('k') | chrome/browser/chromeos/system_logs/system_logs_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698