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

Side by Side Diff: content/renderer/render_view_impl_params.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/renderer/render_view_impl.cc ('k') | content/renderer/render_view_impl_params.cc » ('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 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "content/common/view_message_enums.h" 12 #include "content/common/view_message_enums.h"
13 13
14 struct WebPreferences; 14 struct WebPreferences;
15 15
16 namespace blink { 16 namespace blink {
17 struct WebScreenInfo; 17 struct WebScreenInfo;
18 } 18 }
19 19
20 namespace content { 20 namespace content {
21 21
22 struct RendererPreferences; 22 struct RendererPreferences;
23 23
24 // Container for all parameters passed to RenderViewImpl's constructor. 24 // Container for all parameters passed to RenderViewImpl's constructor.
25 struct CONTENT_EXPORT RenderViewImplParams { 25 struct CONTENT_EXPORT RenderViewImplParams {
26 RenderViewImplParams(int32 opener_id, 26 RenderViewImplParams(int32 opener_id,
27 bool window_was_created_with_opener,
27 const RendererPreferences& renderer_prefs, 28 const RendererPreferences& renderer_prefs,
28 const WebPreferences& webkit_prefs, 29 const WebPreferences& webkit_prefs,
29 int32 routing_id, 30 int32 routing_id,
30 int32 main_frame_routing_id, 31 int32 main_frame_routing_id,
31 int32 surface_id, 32 int32 surface_id,
32 int64 session_storage_namespace_id, 33 int64 session_storage_namespace_id,
33 const base::string16& frame_name, 34 const base::string16& frame_name,
34 bool is_renderer_created, 35 bool is_renderer_created,
35 bool swapped_out, 36 bool swapped_out,
36 bool hidden, 37 bool hidden,
37 bool never_visible, 38 bool never_visible,
38 int32 next_page_id, 39 int32 next_page_id,
39 const blink::WebScreenInfo& screen_info, 40 const blink::WebScreenInfo& screen_info,
40 AccessibilityMode accessibility_mode); 41 AccessibilityMode accessibility_mode);
41 ~RenderViewImplParams(); 42 ~RenderViewImplParams();
42 43
43 int32 opener_id; 44 int32 opener_id;
45 bool window_was_created_with_opener;
44 const RendererPreferences& renderer_prefs; 46 const RendererPreferences& renderer_prefs;
45 const WebPreferences& webkit_prefs; 47 const WebPreferences& webkit_prefs;
46 int32 routing_id; 48 int32 routing_id;
47 int32 main_frame_routing_id; 49 int32 main_frame_routing_id;
48 int32 surface_id; 50 int32 surface_id;
49 int64 session_storage_namespace_id; 51 int64 session_storage_namespace_id;
50 const base::string16& frame_name; 52 const base::string16& frame_name;
51 bool is_renderer_created; 53 bool is_renderer_created;
52 bool swapped_out; 54 bool swapped_out;
53 bool hidden; 55 bool hidden;
54 bool never_visible; 56 bool never_visible;
55 int32 next_page_id; 57 int32 next_page_id;
56 const blink::WebScreenInfo& screen_info; 58 const blink::WebScreenInfo& screen_info;
57 AccessibilityMode accessibility_mode; 59 AccessibilityMode accessibility_mode;
58 }; 60 };
59 61
60 } // namespace content 62 } // namespace content
61 63
62 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ 64 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/renderer/render_view_impl_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698