Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(963)

Unified Diff: content/common/transition_request_messages.h

Issue 297973002: Navigation transitions: Block first response until after transitions have run. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes from review. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/transition_request_messages.h
diff --git a/content/common/transition_request_messages.h b/content/common/transition_request_messages.h
new file mode 100644
index 0000000000000000000000000000000000000000..4072ddf2887c76bbbccea591cf641a963b961fd6
--- /dev/null
+++ b/content/common/transition_request_messages.h
@@ -0,0 +1,16 @@
+// Copyright 2014 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.
+
+// IPC messages for navigation transitions.
+// Multiply-included message file, no include guard.
+
+#include "base/memory/shared_memory.h"
+#include "content/public/common/common_param_traits.h"
+#include "ipc/ipc_message_macros.h"
+
+#define IPC_MESSAGE_START TransitionRequestMsgStart
+
+// Messages sent from the renderer to the browser.
+IPC_MESSAGE_ROUTED1(TransitionRequestHostMsg_SetHasPendingTransitionRequest,
jam 2014/06/16 03:46:10 since the ipc is dispatched in one class, it shoul
shatch 2014/06/16 22:32:19 Done.
+ bool /* is_transition */)

Powered by Google App Engine
This is Rietveld 408576698