Chromium Code Reviews| Index: chrome/browser/extensions/script_executor.h |
| diff --git a/chrome/browser/extensions/script_executor.h b/chrome/browser/extensions/script_executor.h |
| index c4d1567b21583fea40fa296c473cdca6e04c50ca..219a09c4a5a99510d0a43eb5272648877ad99229 100644 |
| --- a/chrome/browser/extensions/script_executor.h |
| +++ b/chrome/browser/extensions/script_executor.h |
| @@ -13,6 +13,7 @@ |
| #include "extensions/common/user_script.h" |
| class GURL; |
| +struct ExtensionMsg_ExecuteCode_Params; |
| namespace base { |
| class ListValue; |
| @@ -93,6 +94,10 @@ class ScriptExecutor { |
| const ExecuteScriptCallback& callback); |
| private: |
| + // A helper function, called upon request being given to execute the script. |
|
not at google - send to devlin
2014/05/15 00:12:36
s/A helper function, c/C/
Devlin
2014/05/15 17:45:59
Done.
|
| + void ExecuteScriptHelper(const ExtensionMsg_ExecuteCode_Params& params, |
| + const ExecuteScriptCallback& callback); |
| + |
| // The next value to use for request_id in ExtensionMsg_ExecuteCode_Params. |
| int next_request_id_; |