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/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 WebKit { | 16 namespace WebKit { |
17 struct WebScreenInfo; | 17 struct WebScreenInfo; |
18 } | 18 } |
19 | 19 |
20 namespace content { | 20 namespace content { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 bool swapped_out; | 54 bool swapped_out; |
55 int32 next_page_id; | 55 int32 next_page_id; |
56 const WebKit::WebScreenInfo& screen_info; | 56 const WebKit::WebScreenInfo& screen_info; |
57 AccessibilityMode accessibility_mode; | 57 AccessibilityMode accessibility_mode; |
58 bool allow_partial_swap; | 58 bool allow_partial_swap; |
59 }; | 59 }; |
60 | 60 |
61 } // namespace content | 61 } // namespace content |
62 | 62 |
63 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ | 63 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_ |
OLD | NEW |