| 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/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 // The name of the resulting frame that should be created (empty if none | 332 // The name of the resulting frame that should be created (empty if none |
| 333 // has been specified). | 333 // has been specified). |
| 334 IPC_STRUCT_MEMBER(string16, frame_name) | 334 IPC_STRUCT_MEMBER(string16, frame_name) |
| 335 | 335 |
| 336 // The frame identifier of the frame initiating the open. | 336 // The frame identifier of the frame initiating the open. |
| 337 IPC_STRUCT_MEMBER(int64, opener_frame_id) | 337 IPC_STRUCT_MEMBER(int64, opener_frame_id) |
| 338 | 338 |
| 339 // The URL of the frame initiating the open. | 339 // The URL of the frame initiating the open. |
| 340 IPC_STRUCT_MEMBER(GURL, opener_url) | 340 IPC_STRUCT_MEMBER(GURL, opener_url) |
| 341 | 341 |
| 342 // The URL of the top frame containing the opener. |
| 343 IPC_STRUCT_MEMBER(GURL, opener_top_level_frame_url) |
| 344 |
| 342 // The security origin of the frame initiating the open. | 345 // The security origin of the frame initiating the open. |
| 343 IPC_STRUCT_MEMBER(GURL, opener_security_origin) | 346 IPC_STRUCT_MEMBER(GURL, opener_security_origin) |
| 344 | 347 |
| 345 // Whether the opener will be suppressed in the new window, in which case | 348 // Whether the opener will be suppressed in the new window, in which case |
| 346 // scripting the new window is not allowed. | 349 // scripting the new window is not allowed. |
| 347 IPC_STRUCT_MEMBER(bool, opener_suppressed) | 350 IPC_STRUCT_MEMBER(bool, opener_suppressed) |
| 348 | 351 |
| 349 // Whether the window should be opened in the foreground, background, etc. | 352 // Whether the window should be opened in the foreground, background, etc. |
| 350 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 353 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
| 351 | 354 |
| (...skipping 2012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2364 // synchronously (see crbug.com/120597). This IPC message sends the character | 2367 // synchronously (see crbug.com/120597). This IPC message sends the character |
| 2365 // bounds after every composition change to always have correct bound info. | 2368 // bounds after every composition change to always have correct bound info. |
| 2366 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 2369 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
| 2367 ui::Range /* composition range */, | 2370 ui::Range /* composition range */, |
| 2368 std::vector<gfx::Rect> /* character bounds */) | 2371 std::vector<gfx::Rect> /* character bounds */) |
| 2369 #endif | 2372 #endif |
| 2370 | 2373 |
| 2371 // Adding a new message? Stick to the sort order above: first platform | 2374 // Adding a new message? Stick to the sort order above: first platform |
| 2372 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2375 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 2373 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2376 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |