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

Unified Diff: content/browser/power_profiler/Intel/power_data_provider_ia.cc

Issue 106223002: chrome power profiler chrome side changes (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 11 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: content/browser/power_profiler/Intel/power_data_provider_ia.cc
diff --git a/content/browser/power_profiler/Intel/power_data_provider_ia.cc b/content/browser/power_profiler/Intel/power_data_provider_ia.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bb85703507ee23130d0198788ff8805493822a0a
--- /dev/null
+++ b/content/browser/power_profiler/Intel/power_data_provider_ia.cc
@@ -0,0 +1,20 @@
+// Copyright 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 "base/logging.h"
+#include "content/browser/power_profiler/Intel/power_data_provider_ia.h"
+
+namespace content {
+
+PowerDataProviderIA::PowerDataProviderIA()
+ : sockets_number_(0),
+ is_open_(false) {
+ for (int i = 0; i < PowerEvent::ID_COUNT; i++ )
+ power_msr_ids_[i] = -1;
+}
+
+PowerDataProviderIA::~PowerDataProviderIA() {
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698