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

Side by Side Diff: content/common/view_messages.h

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: add basic postMessage test Created 5 years, 7 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 unified diff | Download patch
OLDNEW
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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 IPC_STRUCT_MEMBER(ViewMsg_Resize_Params, initial_size) 534 IPC_STRUCT_MEMBER(ViewMsg_Resize_Params, initial_size)
535 535
536 // Whether to enable auto-resize. 536 // Whether to enable auto-resize.
537 IPC_STRUCT_MEMBER(bool, enable_auto_resize) 537 IPC_STRUCT_MEMBER(bool, enable_auto_resize)
538 538
539 // The minimum size to layout the page if auto-resize is enabled. 539 // The minimum size to layout the page if auto-resize is enabled.
540 IPC_STRUCT_MEMBER(gfx::Size, min_size) 540 IPC_STRUCT_MEMBER(gfx::Size, min_size)
541 541
542 // The maximum size to layout the page if auto-resize is enabled. 542 // The maximum size to layout the page if auto-resize is enabled.
543 IPC_STRUCT_MEMBER(gfx::Size, max_size) 543 IPC_STRUCT_MEMBER(gfx::Size, max_size)
544
545 // Whether the RenderView is for a guest.
Charlie Reis 2015/05/19 07:12:31 nit: Remove embedder/guest references.
lazyboy 2015/05/21 23:23:47 Done.
546 // TODO(lazyboy): Remove once we can create RFP without swapped out
547 // RenderView.
548 IPC_STRUCT_MEMBER(bool, is_guest)
544 IPC_STRUCT_END() 549 IPC_STRUCT_END()
545 550
546 // Messages sent from the browser to the renderer. 551 // Messages sent from the browser to the renderer.
547 552
548 #if defined(OS_ANDROID) 553 #if defined(OS_ANDROID)
549 // Tells the renderer to cancel an opened date/time dialog. 554 // Tells the renderer to cancel an opened date/time dialog.
550 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog) 555 IPC_MESSAGE_ROUTED0(ViewMsg_CancelDateTimeDialog)
551 556
552 // Replaces a date time input field. 557 // Replaces a date time input field.
553 IPC_MESSAGE_ROUTED1(ViewMsg_ReplaceDateTime, 558 IPC_MESSAGE_ROUTED1(ViewMsg_ReplaceDateTime,
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 1623 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
1619 // for details. 1624 // for details.
1620 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 1625 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
1621 LOGFONT /* font_data */, 1626 LOGFONT /* font_data */,
1622 base::string16 /* characters */) 1627 base::string16 /* characters */)
1623 #endif 1628 #endif
1624 1629
1625 // Adding a new message? Stick to the sort order above: first platform 1630 // Adding a new message? Stick to the sort order above: first platform
1626 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1631 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1627 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1632 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698