Index: chrome/common/render_messages_internal.h |
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h |
index 9480f06524c3d264af71706582ec3286433d55a3..bd3f0dd1e91ebf70b870f84707506dbe691a0ab9 100644 |
--- a/chrome/common/render_messages_internal.h |
+++ b/chrome/common/render_messages_internal.h |
@@ -205,9 +205,10 @@ IPC_BEGIN_MESSAGES(View, 1) |
// jscript_url is the string containing the javascript: url to be executed |
// in the target frame's context. The string should start with "javascript:" |
// and continue with a valid JS text. |
- IPC_MESSAGE_ROUTED2(ViewMsg_ScriptEvalRequest, |
- std::wstring, /* frame_xpath */ |
- std::wstring /* jscript_url */) |
+ IPC_MESSAGE_ROUTED3(ViewMsg_ScriptEvalRequest, |
+ std::wstring, /* frame_xpath */ |
+ std::wstring, /* jscript_url */ |
+ std::wstring /* script filename (for error messages) */) |
// Log a message to the console of the target frame |
IPC_MESSAGE_ROUTED3(ViewMsg_AddMessageToConsole, |