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

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

Issue 212703005: Preserve Page::openedByDOM state across process swaps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 481
482 // Whether the RenderView should initially be swapped out. 482 // Whether the RenderView should initially be swapped out.
483 IPC_STRUCT_MEMBER(bool, swapped_out) 483 IPC_STRUCT_MEMBER(bool, swapped_out)
484 484
485 // Whether the RenderView should initially be hidden. 485 // Whether the RenderView should initially be hidden.
486 IPC_STRUCT_MEMBER(bool, hidden) 486 IPC_STRUCT_MEMBER(bool, hidden)
487 487
488 // Whether the RenderView will never be visible. 488 // Whether the RenderView will never be visible.
489 IPC_STRUCT_MEMBER(bool, never_visible) 489 IPC_STRUCT_MEMBER(bool, never_visible)
490 490
491 // Whether the window associated with this view was created with an opener.
492 IPC_STRUCT_MEMBER(bool, window_was_created_with_opener)
493
491 // The initial page ID to use for this view, which must be larger than any 494 // The initial page ID to use for this view, which must be larger than any
492 // existing navigation that might be loaded in the view. Page IDs are unique 495 // existing navigation that might be loaded in the view. Page IDs are unique
493 // to a view and are only updated by the renderer after this initial value. 496 // to a view and are only updated by the renderer after this initial value.
494 IPC_STRUCT_MEMBER(int32, next_page_id) 497 IPC_STRUCT_MEMBER(int32, next_page_id)
495 498
496 // The properties of the screen associated with the view. 499 // The properties of the screen associated with the view.
497 IPC_STRUCT_MEMBER(blink::WebScreenInfo, screen_info) 500 IPC_STRUCT_MEMBER(blink::WebScreenInfo, screen_info)
498 501
499 // The accessibility mode of the renderer. 502 // The accessibility mode of the renderer.
500 IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode) 503 IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode)
(...skipping 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1833 // synchronously (see crbug.com/120597). This IPC message sends the character 1836 // synchronously (see crbug.com/120597). This IPC message sends the character
1834 // bounds after every composition change to always have correct bound info. 1837 // bounds after every composition change to always have correct bound info.
1835 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, 1838 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged,
1836 gfx::Range /* composition range */, 1839 gfx::Range /* composition range */,
1837 std::vector<gfx::Rect> /* character bounds */) 1840 std::vector<gfx::Rect> /* character bounds */)
1838 #endif 1841 #endif
1839 1842
1840 // Adding a new message? Stick to the sort order above: first platform 1843 // Adding a new message? Stick to the sort order above: first platform
1841 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1844 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1842 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1845 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698