Chromium Code Reviews| Index: extensions/common/extension_consumer.cc |
| diff --git a/extensions/common/extension_consumer.cc b/extensions/common/extension_consumer.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..edd58efe0b22b12efde65501e0777ea636ca57d4 |
| --- /dev/null |
| +++ b/extensions/common/extension_consumer.cc |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2015 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. |
| + |
| +#include "extensions/common/extension_consumer.h" |
| + |
| +namespace extensions { |
| + |
| +ExtensionConsumer::ExtensionConsumer( |
| + Extension* extension, const HostID& host_id) |
| + : Host(host_id), |
| + extension_(make_scoped_refptr(extension)) { |
|
Devlin
2015/02/04 17:01:14
nit: indentation
Xi Han
2015/02/05 16:06:20
Done.
|
| +} |
| + |
| +ExtensionConsumer::~ExtensionConsumer() { |
| +} |
| + |
| +} // namespace extensions |