| Index: chrome/common/extensions/extension_test_util.h
|
| diff --git a/chrome/common/extensions/extension_test_util.h b/chrome/common/extensions/extension_test_util.h
|
| index 7268160bcb3f9a4e0958e9b629beed88e1882553..c6718af6734dbba1ab35b8d48be9bc6f81ec585b 100644
|
| --- a/chrome/common/extensions/extension_test_util.h
|
| +++ b/chrome/common/extensions/extension_test_util.h
|
| @@ -7,11 +7,20 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/memory/ref_counted.h"
|
| +
|
| +namespace extensions {
|
| +class Extension;
|
| +}
|
| +
|
| namespace extension_test_util {
|
|
|
| // Makes a fake extension id using the given |seed|.
|
| std::string MakeId(std::string seed);
|
|
|
| +// Return a very simple extension with id |id|.
|
| +scoped_refptr<extensions::Extension> CreateExtensionWithID(std::string id);
|
| +
|
| } // namespace extension_test_util
|
|
|
| #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_TEST_UTIL_H_
|
|
|