| Index: chrome/browser/extensions/script_executor.h
|
| diff --git a/chrome/browser/extensions/script_executor.h b/chrome/browser/extensions/script_executor.h
|
| index 4fecfef92b9a770aa7aec77235d5bb02410873d8..af2ec57f048e5900695d21da13e362c3cb96ffa4 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;
|
| @@ -101,6 +102,10 @@ class ScriptExecutor {
|
| const ExecuteScriptCallback& callback);
|
|
|
| private:
|
| + // Called upon a request being given to execute the script.
|
| + void ExecuteScriptHelper(scoped_ptr<ExtensionMsg_ExecuteCode_Params> params,
|
| + const ExecuteScriptCallback& callback);
|
| +
|
| // The next value to use for request_id in ExtensionMsg_ExecuteCode_Params.
|
| int next_request_id_;
|
|
|
|
|