Chromium Code Reviews| Index: chrome/browser/extensions/extension_function_test_utils.cc |
| diff --git a/chrome/browser/extensions/extension_function_test_utils.cc b/chrome/browser/extensions/extension_function_test_utils.cc |
| index e7de2472a2db359b5e65c0c319ffeeef3dde64ed..23c3a527f01039ff47b3855927237f90706f5d4c 100644 |
| --- a/chrome/browser/extensions/extension_function_test_utils.cc |
| +++ b/chrome/browser/extensions/extension_function_test_utils.cc |
| @@ -270,4 +270,10 @@ bool RunFunction(UIThreadExtensionFunction* function, |
| return response_delegate.GetResponse(); |
| } |
| +bool RunFunction(UIThreadExtensionFunction* function, |
| + const std::string& args, |
| + Browser* browser) { |
| + return RunFunction(function, args, browser, NONE); |
|
Fady Samuel
2014/04/07 20:01:14
What is the purpose of this change?
paulmeyer
2014/04/07 20:56:10
Every other "RunFunction" in this file has an over
|
| +} |
| + |
| } // namespace extension_function_test_utils |