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