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

Unified Diff: base/system_monitor/system_monitor.cc

Issue 10825273: Clean-up inline members of nested classes (base/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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: base/system_monitor/system_monitor.cc
diff --git a/base/system_monitor/system_monitor.cc b/base/system_monitor/system_monitor.cc
index d1dd4391cc4a2b68871b4dd77ab0fc4f15e9d529..c9b84852f22ce1c5603855a8ea8acde0dc0e4502 100644
--- a/base/system_monitor/system_monitor.cc
+++ b/base/system_monitor/system_monitor.cc
@@ -50,6 +50,17 @@ SystemMonitor::~SystemMonitor() {
g_system_monitor = NULL;
}
+SystemMonitor::MediaDeviceInfo::MediaDeviceInfo(
jar (doing other things) 2012/08/09 16:30:27 nit: Since the declaration of this method in the n
hans 2012/08/09 18:28:48 Done.
+ const std::string& id,
+ const string16& device_name,
+ MediaDeviceType device_type,
+ const FilePath::StringType& device_location)
+ : unique_id(id),
+ name(device_name),
+ type(device_type),
+ location(device_location) {
+}
+
// static
SystemMonitor* SystemMonitor::Get() {
return g_system_monitor;
« no previous file with comments | « base/system_monitor/system_monitor.h ('k') | base/values.h » ('j') | base/values.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698