Chromium Code Reviews| Index: content/browser/power_profiler/power_data_provider_factory.cc |
| diff --git a/content/browser/power_profiler/power_data_provider_factory.cc b/content/browser/power_profiler/power_data_provider_factory.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a1529c9ed11790d03e2237f7149a9a9af664b73f |
| --- /dev/null |
| +++ b/content/browser/power_profiler/power_data_provider_factory.cc |
| @@ -0,0 +1,13 @@ |
| +// Copyright 2014 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. |
|
qsr
2014/02/13 16:40:13
If you have the implementation in a separate file,
Pan
2014/02/14 07:17:02
Done.
|
| + |
| +#include "content/browser/power_profiler/power_data_provider.h" |
| + |
| +namespace content { |
| + |
| +scoped_ptr<PowerDataProvider> PowerDataProviderFactory::Create() { |
| + return make_scoped_ptr<PowerDataProvider>(NULL); |
| +} |
| + |
| +} // namespace content |