| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 // has been specified). | 307 // has been specified). |
| 308 IPC_STRUCT_MEMBER(string16, frame_name) | 308 IPC_STRUCT_MEMBER(string16, frame_name) |
| 309 | 309 |
| 310 // The frame identifier of the frame initiating the open. | 310 // The frame identifier of the frame initiating the open. |
| 311 IPC_STRUCT_MEMBER(int64, opener_frame_id) | 311 IPC_STRUCT_MEMBER(int64, opener_frame_id) |
| 312 | 312 |
| 313 // The URL of the frame initiating the open. | 313 // The URL of the frame initiating the open. |
| 314 IPC_STRUCT_MEMBER(GURL, opener_url) | 314 IPC_STRUCT_MEMBER(GURL, opener_url) |
| 315 | 315 |
| 316 // The security origin of the frame initiating the open. | 316 // The security origin of the frame initiating the open. |
| 317 IPC_STRUCT_MEMBER(std::string, opener_security_origin) | 317 IPC_STRUCT_MEMBER(GURL, opener_security_origin) |
| 318 | 318 |
| 319 // Whether the opener will be suppressed in the new window, in which case | 319 // Whether the opener will be suppressed in the new window, in which case |
| 320 // scripting the new window is not allowed. | 320 // scripting the new window is not allowed. |
| 321 IPC_STRUCT_MEMBER(bool, opener_suppressed) | 321 IPC_STRUCT_MEMBER(bool, opener_suppressed) |
| 322 | 322 |
| 323 // Whether the window should be opened in the foreground, background, etc. | 323 // Whether the window should be opened in the foreground, background, etc. |
| 324 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 324 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
| 325 | 325 |
| 326 // The URL that will be loaded in the new window (empty if none has been | 326 // The URL that will be loaded in the new window (empty if none has been |
| 327 // sepcified). | 327 // sepcified). |
| (...skipping 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2375 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2375 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2376 // for details. | 2376 // for details. |
| 2377 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2377 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2378 LOGFONT /* font_data */, | 2378 LOGFONT /* font_data */, |
| 2379 string16 /* characters */) | 2379 string16 /* characters */) |
| 2380 #endif | 2380 #endif |
| 2381 | 2381 |
| 2382 // Notifies the browser that the frame with the given id was detached. | 2382 // Notifies the browser that the frame with the given id was detached. |
| 2383 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, | 2383 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, |
| 2384 int64 /* frame_id */) | 2384 int64 /* frame_id */) |
| OLD | NEW |