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 #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" |
(...skipping 19 matching lines...) Expand all Loading... |
30 int32 main_frame_routing_id, | 30 int32 main_frame_routing_id, |
31 int32 surface_id, | 31 int32 surface_id, |
32 int64 session_storage_namespace_id, | 32 int64 session_storage_namespace_id, |
33 const base::string16& frame_name, | 33 const base::string16& frame_name, |
34 bool is_renderer_created, | 34 bool is_renderer_created, |
35 bool swapped_out, | 35 bool swapped_out, |
36 int32 proxy_routing_id, | 36 int32 proxy_routing_id, |
37 bool hidden, | 37 bool hidden, |
38 bool never_visible, | 38 bool never_visible, |
39 int32 next_page_id, | 39 int32 next_page_id, |
40 const blink::WebScreenInfo& screen_info, | 40 const blink::WebScreenInfo& screen_info); |
41 AccessibilityMode accessibility_mode); | |
42 ~RenderViewImplParams(); | 41 ~RenderViewImplParams(); |
43 | 42 |
44 int32 opener_id; | 43 int32 opener_id; |
45 bool window_was_created_with_opener; | 44 bool window_was_created_with_opener; |
46 const RendererPreferences& renderer_prefs; | 45 const RendererPreferences& renderer_prefs; |
47 const WebPreferences& webkit_prefs; | 46 const WebPreferences& webkit_prefs; |
48 int32 routing_id; | 47 int32 routing_id; |
49 int32 main_frame_routing_id; | 48 int32 main_frame_routing_id; |
50 int32 surface_id; | 49 int32 surface_id; |
51 int64 session_storage_namespace_id; | 50 int64 session_storage_namespace_id; |
52 const base::string16& frame_name; | 51 const base::string16& frame_name; |
53 bool is_renderer_created; | 52 bool is_renderer_created; |
54 bool swapped_out; | 53 bool swapped_out; |
55 int32 proxy_routing_id; | 54 int32 proxy_routing_id; |
56 bool hidden; | 55 bool hidden; |
57 bool never_visible; | 56 bool never_visible; |
58 int32 next_page_id; | 57 int32 next_page_id; |
59 const blink::WebScreenInfo& screen_info; | 58 const blink::WebScreenInfo& screen_info; |
60 AccessibilityMode accessibility_mode; | |
61 }; | 59 }; |
62 | 60 |
63 } // namespace content | 61 } // namespace content |
64 | 62 |
65 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ | 63 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ |
OLD | NEW |