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