Index: chrome/browser/extensions/extension_function_test_utils.h |
diff --git a/chrome/browser/extensions/extension_function_test_utils.h b/chrome/browser/extensions/extension_function_test_utils.h |
index 3ae6db8a28013b225542013b4822f8c1ea6d6e40..7571690e9fa6c5fa7593eb2218082857e7bc5b10 100644 |
--- a/chrome/browser/extensions/extension_function_test_utils.h |
+++ b/chrome/browser/extensions/extension_function_test_utils.h |
@@ -73,13 +73,15 @@ std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function, |
// Run |function| with |args| and return the result. Adds an error to the |
// current test if |function| returns an error. The caller takes ownership of |
// the result. |
-base::Value* RunFunctionAndReturnResult(UIThreadExtensionFunction* function, |
- const std::string& args, |
- Browser* browser, |
- RunFunctionFlags flags); |
-base::Value* RunFunctionAndReturnResult(UIThreadExtensionFunction* function, |
- const std::string& args, |
- Browser* browser); |
+base::Value* RunFunctionAndReturnSingleResult( |
+ UIThreadExtensionFunction* function, |
+ const std::string& args, |
+ Browser* browser, |
+ RunFunctionFlags flags); |
+base::Value* RunFunctionAndReturnSingleResult( |
+ UIThreadExtensionFunction* function, |
+ const std::string& args, |
+ Browser* browser); |
// Create and run |function| with |args|. Works with both synchronous and async |
// functions. |