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/string16.h" | 10 #include "base/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 #include "content/public/common/accessibility_mode.h" |
13 | 14 |
14 namespace WebKit { | 15 namespace WebKit { |
15 struct WebScreenInfo; | 16 struct WebScreenInfo; |
16 } | 17 } |
17 | 18 |
18 namespace webkit_glue { | 19 namespace webkit_glue { |
19 struct WebPreferences; | 20 struct WebPreferences; |
20 } | 21 } |
21 | 22 |
22 namespace content { | 23 namespace content { |
(...skipping 29 matching lines...) Expand all Loading... |
52 bool is_renderer_created; | 53 bool is_renderer_created; |
53 bool swapped_out; | 54 bool swapped_out; |
54 int32 next_page_id; | 55 int32 next_page_id; |
55 const WebKit::WebScreenInfo& screen_info; | 56 const WebKit::WebScreenInfo& screen_info; |
56 AccessibilityMode accessibility_mode; | 57 AccessibilityMode accessibility_mode; |
57 }; | 58 }; |
58 | 59 |
59 } // namespace content | 60 } // namespace content |
60 | 61 |
61 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ | 62 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ |
OLD | NEW |