Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: content/renderer/render_view.h

Issue 7745035: Add a big grab bag of missing web accessibility functionality... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 scoped_ptr<WebKit::WebAccessibilityCache> accessibility_; 1169 scoped_ptr<WebKit::WebAccessibilityCache> accessibility_;
1170 1170
1171 // Collect renderer accessibility notifications until they are ready to be 1171 // Collect renderer accessibility notifications until they are ready to be
1172 // sent to the browser. 1172 // sent to the browser.
1173 std::vector<RendererAccessibilityNotification> 1173 std::vector<RendererAccessibilityNotification>
1174 pending_accessibility_notifications_; 1174 pending_accessibility_notifications_;
1175 1175
1176 // Set if we are waiting for a accessibility notification ack. 1176 // Set if we are waiting for a accessibility notification ack.
1177 bool accessibility_ack_pending_; 1177 bool accessibility_ack_pending_;
1178 1178
1179 // True if verbose logging of accessibility events is on.
1180 bool accessibility_logging_;
1181
1179 // Dispatches all P2P socket used by the renderer. 1182 // Dispatches all P2P socket used by the renderer.
1180 content::P2PSocketDispatcher* p2p_socket_dispatcher_; 1183 content::P2PSocketDispatcher* p2p_socket_dispatcher_;
1181 1184
1182 DevToolsAgent* devtools_agent_; 1185 DevToolsAgent* devtools_agent_;
1183 1186
1184 // Misc ---------------------------------------------------------------------- 1187 // Misc ----------------------------------------------------------------------
1185 1188
1186 // The current and pending file chooser completion objects. If the queue is 1189 // The current and pending file chooser completion objects. If the queue is
1187 // nonempty, the first item represents the currently running file chooser 1190 // nonempty, the first item represents the currently running file chooser
1188 // callback, and the remaining elements are the other file chooser completion 1191 // callback, and the remaining elements are the other file chooser completion
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 // bunch of stuff, you should probably create a helper class and put your 1248 // bunch of stuff, you should probably create a helper class and put your
1246 // data and methods on that to avoid bloating RenderView more. You can use 1249 // data and methods on that to avoid bloating RenderView more. You can use
1247 // the Observer interface to filter IPC messages and receive frame change 1250 // the Observer interface to filter IPC messages and receive frame change
1248 // notifications. 1251 // notifications.
1249 // --------------------------------------------------------------------------- 1252 // ---------------------------------------------------------------------------
1250 1253
1251 DISALLOW_COPY_AND_ASSIGN(RenderView); 1254 DISALLOW_COPY_AND_ASSIGN(RenderView);
1252 }; 1255 };
1253 1256
1254 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1257 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698