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

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

Issue 106223002: chrome power profiler chrome side changes (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years 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_profiler_helper_ia_posix.cc
diff --git a/content/browser/power_profiler/Intel/power_profiler_helper_ia_posix.cc b/content/browser/power_profiler/Intel/power_profiler_helper_ia_posix.cc
new file mode 100644
index 0000000000000000000000000000000000000000..afbeb9dc8b98355b6631a2de843a1b5902f58467
--- /dev/null
+++ b/content/browser/power_profiler/Intel/power_profiler_helper_ia_posix.cc
@@ -0,0 +1,25 @@
+// 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_profiler_helper_ia.h"
+
+namespace content {
+
+void PowerProfilerHelperIA::Reset(size_t resolution) {
+ NOTIMPLEMENTED();
+}
+
+int PowerProfilerHelperIA::GetData(PowerEvent* data, double* energies,
+ int count) {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+bool PowerProfilerHelperIA::Initialize() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+} // namespace base

Powered by Google App Engine
This is Rietveld 408576698