OLD | NEW |
---|---|
(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 #ifndef CONTENT_BROWSER_POWER_PROFILER_HELPER_FACTORY_H_ | |
6 #define CONTENT_BROWSER_POWER_PROFILER_HELPER_FACTORY_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "base/memory/ref_counted.h" | |
10 #include "content/browser/power_profiler/power_profiler_helper.h" | |
11 | |
12 namespace content { | |
13 | |
14 class PowerProfilerHelperFactory { | |
pfeldman
2014/01/09 11:38:58
ditto
| |
15 public: | |
16 static PowerProfilerHelper* Create(); | |
17 | |
18 private: | |
19 PowerProfilerHelperFactory() { } | |
20 DISALLOW_COPY_AND_ASSIGN(PowerProfilerHelperFactory); | |
21 }; | |
22 | |
23 } // namespace content | |
24 | |
25 #endif // CONTENT_BROWSER_POWER_PROFILER_HELPER_FACTORY_H_ | |
OLD | NEW |