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

Side by Side Diff: content/browser/power_profiler/power_profiler_helper_factory.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 "content/browser/power_profiler/power_profiler_helper_factory.h"
6
7 #include "content/browser/power_profiler/power_profiler_helper_dummy.h"
8 #if defined(ARCH_CPU_X86_FAMILY)
9 #include "content/browser/power_profiler/Intel/power_profiler_helper_ia.h"
10 #endif
11
12 namespace content {
13
14 PowerProfilerHelper* PowerProfilerHelperFactory::Create() {
15
16 #if defined(ARCH_CPU_X86_FAMILY)
17 return new PowerProfilerHelperIA();
18 #else
19 return new PowerProfilerHelperDummy();
20 #endif
21
22 }
23
24 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698