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

Side by Side 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 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_data_provider_ia.h"
7
8 namespace content {
9
10 PowerDataProviderIA::PowerDataProviderIA()
11 : sockets_number_(0),
12 is_open_(false) {
13 for (int i = 0; i < PowerEvent::ID_COUNT; i++ )
14 power_msr_ids_[i] = -1;
15 }
16
17 PowerDataProviderIA::~PowerDataProviderIA() {
18 }
19
20 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698