Index: chrome/common/render_messages_internal.h |
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h |
index 3d27fb5e4b3f6336b0251acf87ff9d6b219c9968..2ab73974f9e8aedc9b60bf5ec8320c2c70a98f20 100644 |
--- a/chrome/common/render_messages_internal.h |
+++ b/chrome/common/render_messages_internal.h |
@@ -20,6 +20,7 @@ |
#include "base/values.h" |
#include "chrome/common/css_colors.h" |
#include "chrome/common/transport_dib.h" |
+#include "chrome/common/view_types.h" |
#include "ipc/ipc_channel_handle.h" |
#include "ipc/ipc_message_macros.h" |
#include "third_party/skia/include/core/SkBitmap.h" |
@@ -646,6 +647,14 @@ IPC_BEGIN_MESSAGES(View) |
IPC_MESSAGE_CONTROL1(UtilityMsg_UnpackWebResource, |
std::string /* JSON data */) |
+ // Tell the renderer which browser window it's being attached to. |
+ IPC_MESSAGE_ROUTED1(ViewMsg_UpdateBrowserWindowId, |
+ int /* id of browser window */) |
+ |
+ // Tell the renderer which type this view is. |
+ IPC_MESSAGE_ROUTED1(ViewMsg_NotifyRenderViewType, |
+ ViewType::Type /* view_type */) |
+ |
// Returns a file handle |
IPC_MESSAGE_CONTROL2(ViewMsg_DatabaseOpenFileResponse, |
int32 /* the ID of the message we're replying to */, |