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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/logging.h"
6 #include "content/browser/power_profiler/Intel/power_profiler_helper_ia.h"
7
8 namespace content {
9
10 void PowerProfilerHelperIA::Reset(size_t resolution) {
11 NOTIMPLEMENTED();
12 }
13
14 int PowerProfilerHelperIA::GetData(PowerEvent* data, double* energies,
15 int count) {
16 NOTIMPLEMENTED();
17 return 0;
18 }
19
20 bool PowerProfilerHelperIA::Initialize() {
21 NOTIMPLEMENTED();
22 return false;
23 }
24
25 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698