OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, no include guard. |
| 7 |
| 8 #include "base/memory/shared_memory.h" |
| 9 #include "content/public/common/common_param_traits.h" |
| 10 #include "ipc/ipc_message_macros.h" |
| 11 |
| 12 #define IPC_MESSAGE_START TransitionRequestMsgStart |
| 13 |
| 14 // Messages sent from the renderer to the browser. |
| 15 IPC_MESSAGE_ROUTED1(TransitionRequestHostMsg_SetHasPendingTransitionRequest, |
| 16 bool /* is_transition */) |
OLD | NEW |