OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1165 scoped_ptr<WebKit::WebAccessibilityCache> accessibility_; | 1165 scoped_ptr<WebKit::WebAccessibilityCache> accessibility_; |
1166 | 1166 |
1167 // Collect renderer accessibility notifications until they are ready to be | 1167 // Collect renderer accessibility notifications until they are ready to be |
1168 // sent to the browser. | 1168 // sent to the browser. |
1169 std::vector<RendererAccessibilityNotification> | 1169 std::vector<RendererAccessibilityNotification> |
1170 pending_accessibility_notifications_; | 1170 pending_accessibility_notifications_; |
1171 | 1171 |
1172 // Set if we are waiting for a accessibility notification ack. | 1172 // Set if we are waiting for a accessibility notification ack. |
1173 bool accessibility_ack_pending_; | 1173 bool accessibility_ack_pending_; |
1174 | 1174 |
| 1175 // True if verbose logging of accessibility events is on. |
| 1176 bool accessibility_logging_; |
| 1177 |
1175 // Dispatches all P2P socket used by the renderer. | 1178 // Dispatches all P2P socket used by the renderer. |
1176 content::P2PSocketDispatcher* p2p_socket_dispatcher_; | 1179 content::P2PSocketDispatcher* p2p_socket_dispatcher_; |
1177 | 1180 |
1178 DevToolsAgent* devtools_agent_; | 1181 DevToolsAgent* devtools_agent_; |
1179 | 1182 |
1180 // Misc ---------------------------------------------------------------------- | 1183 // Misc ---------------------------------------------------------------------- |
1181 | 1184 |
1182 // The current and pending file chooser completion objects. If the queue is | 1185 // The current and pending file chooser completion objects. If the queue is |
1183 // nonempty, the first item represents the currently running file chooser | 1186 // nonempty, the first item represents the currently running file chooser |
1184 // callback, and the remaining elements are the other file chooser completion | 1187 // callback, and the remaining elements are the other file chooser completion |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1241 // bunch of stuff, you should probably create a helper class and put your | 1244 // bunch of stuff, you should probably create a helper class and put your |
1242 // data and methods on that to avoid bloating RenderView more. You can use | 1245 // data and methods on that to avoid bloating RenderView more. You can use |
1243 // the Observer interface to filter IPC messages and receive frame change | 1246 // the Observer interface to filter IPC messages and receive frame change |
1244 // notifications. | 1247 // notifications. |
1245 // --------------------------------------------------------------------------- | 1248 // --------------------------------------------------------------------------- |
1246 | 1249 |
1247 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1250 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1248 }; | 1251 }; |
1249 | 1252 |
1250 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1253 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |