Index: content/common/navigation_controller/navigation_controller_messages.h |
diff --git a/content/common/navigation_controller/navigation_controller_messages.h b/content/common/navigation_controller/navigation_controller_messages.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a3fb2a76f7acb8d35adc09ca343e30fe5ace778f |
--- /dev/null |
+++ b/content/common/navigation_controller/navigation_controller_messages.h |
@@ -0,0 +1,28 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// Message definition file, included multiple times, hence no include guard. |
+ |
+#include "base/strings/string16.h" |
+#include "ipc/ipc_message_macros.h" |
+#include "ipc/ipc_param_traits.h" |
+#include "url/gurl.h" |
+ |
+#define IPC_MESSAGE_START NavigationControllerMsgStart |
+ |
+IPC_MESSAGE_CONTROL3(NavigationControllerHostMsg_RegisterController, |
+ int32 /* host_id */, |
+ string16 /* scope */, |
+ GURL /* script_url */) |
+ |
+IPC_MESSAGE_CONTROL1(NavigationControllerMsg_ControllerReady, |
+ int32 /* host_id */) |
+ |
+IPC_MESSAGE_CONTROL2(NavigationControllerHostMsg_UnregisterController, |
+ int32 /* host_id */, |
+ string16 /* scope */) |
+ |
+IPC_MESSAGE_CONTROL2(NavigationControllerMsg_ControllerUnregistered, |
+ int32 /* host_id */, |
+ string16 /* scope */) |