Chromium Code Reviews| Index: content/browser/power_profiler/power_profiler_helper_factory.h |
| diff --git a/content/browser/power_profiler/power_profiler_helper_factory.h b/content/browser/power_profiler/power_profiler_helper_factory.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3b07ed4fc5a29750f81d1b8b2f03acfa7d5b329f |
| --- /dev/null |
| +++ b/content/browser/power_profiler/power_profiler_helper_factory.h |
| @@ -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. |
| + |
| +#ifndef CONTENT_BROWSER_POWER_PROFILER_HELPER_FACTORY_H_ |
| +#define CONTENT_BROWSER_POWER_PROFILER_HELPER_FACTORY_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "base/memory/ref_counted.h" |
| +#include "content/browser/power_profiler/power_profiler_helper.h" |
| + |
| +namespace content { |
| + |
| +class PowerProfilerHelperFactory { |
|
pfeldman
2014/01/09 11:38:58
ditto
|
| + public: |
| + static PowerProfilerHelper* Create(); |
| + |
| + private: |
| + PowerProfilerHelperFactory() { } |
| + DISALLOW_COPY_AND_ASSIGN(PowerProfilerHelperFactory); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_POWER_PROFILER_HELPER_FACTORY_H_ |