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