| Index: extensions/browser/api_test_utils.cc
|
| diff --git a/extensions/browser/api_test_utils.cc b/extensions/browser/api_test_utils.cc
|
| index 8d215a5fc29d961dfabbea9790e13310844f1dee..1aec2af76f285ea1a6ec29cfb73a58bdcd200ca9 100644
|
| --- a/extensions/browser/api_test_utils.cc
|
| +++ b/extensions/browser/api_test_utils.cc
|
| @@ -135,6 +135,13 @@ scoped_refptr<Extension> CreateExtension(
|
| std::string());
|
| }
|
|
|
| +scoped_refptr<Extension> CreateEmptyExtensionWithLocation(
|
| + Manifest::Location location) {
|
| + scoped_ptr<base::DictionaryValue> test_extension_value(
|
| + ParseDictionary("{\"name\": \"Test\", \"version\": \"1.0\"}"));
|
| + return CreateExtension(location, test_extension_value.get(), std::string());
|
| +}
|
| +
|
| base::Value* RunFunctionWithDelegateAndReturnSingleResult(
|
| UIThreadExtensionFunction* function,
|
| const std::string& args,
|
|
|