Index: extensions/browser/api/execute_code_function.h |
diff --git a/extensions/browser/api/execute_code_function.h b/extensions/browser/api/execute_code_function.h |
index 585d606afe3a275242f8d8bdd2466e3f3e576bc8..8c0c948e3a6e2507c741e21a895d54a700538502 100644 |
--- a/extensions/browser/api/execute_code_function.h |
+++ b/extensions/browser/api/execute_code_function.h |
@@ -52,12 +52,11 @@ class ExecuteCodeFunction : public T { |
// Runs on FILE thread. Loads message bundles for the extension and |
// localizes the CSS data. Calls back DidLoadAndLocalizeFile on the UI thread. |
- void GetFileURLAndLocalizeCSS( |
- ScriptExecutor::ScriptType script_type, |
- const std::string& data, |
- const std::string& extension_id, |
- const base::FilePath& extension_path, |
- const std::string& extension_default_locale); |
+ void GetFileURLAndLocalizeCSS(ScriptExecutor::ScriptType script_type, |
Fady Samuel
2014/09/04 20:41:09
Can you make this change in the ExecuteCodeFunctio
|
+ const std::string& data, |
+ const std::string& extension_id, |
+ const base::FilePath& extension_path, |
+ const std::string& extension_default_locale); |
// Called when contents from the loaded file have been localized. |
void DidLoadAndLocalizeFile(bool success, const std::string& data); |
@@ -77,4 +76,3 @@ class ExecuteCodeFunction : public T { |
} // namespace extensions |
#endif // EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ |
- |