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 9712b94f5d36f5d7f6fb0fad549f096a7a4e597c..7bcf84d4b043f5ff47255f184dd155a24e987401 100644 |
--- a/chrome/browser/extensions/extension_function_test_utils.h |
+++ b/chrome/browser/extensions/extension_function_test_utils.h |
@@ -72,13 +72,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. |