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

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

Issue 268543008: Cross-process iframe accessibility. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error Created 6 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/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.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) 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_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 virtual void didUpdateLayout(); 410 virtual void didUpdateLayout();
411 #if defined(OS_ANDROID) 411 #if defined(OS_ANDROID)
412 virtual bool didTapMultipleTargets( 412 virtual bool didTapMultipleTargets(
413 const blink::WebGestureEvent& event, 413 const blink::WebGestureEvent& event,
414 const blink::WebVector<blink::WebRect>& target_rects); 414 const blink::WebVector<blink::WebRect>& target_rects);
415 #endif 415 #endif
416 virtual blink::WebString acceptLanguages(); 416 virtual blink::WebString acceptLanguages();
417 virtual void navigateBackForwardSoon(int offset); 417 virtual void navigateBackForwardSoon(int offset);
418 virtual int historyBackListCount(); 418 virtual int historyBackListCount();
419 virtual int historyForwardListCount(); 419 virtual int historyForwardListCount();
420 virtual void postAccessibilityEvent(
421 const blink::WebAXObject& obj, blink::WebAXEvent event);
422 virtual blink::WebSpeechRecognizer* speechRecognizer(); 420 virtual blink::WebSpeechRecognizer* speechRecognizer();
423 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); 421 virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
424 virtual void zoomLevelChanged(); 422 virtual void zoomLevelChanged();
425 virtual double zoomLevelToZoomFactor(double zoom_level) const; 423 virtual double zoomLevelToZoomFactor(double zoom_level) const;
426 virtual double zoomFactorToZoomLevel(double factor) const; 424 virtual double zoomFactorToZoomLevel(double factor) const;
427 425
428 // TODO(sanjoy.pal): Remove once blink patch lands. http://crbug.com/406236. 426 // TODO(sanjoy.pal): Remove once blink patch lands. http://crbug.com/406236.
429 virtual void registerProtocolHandler(const blink::WebString& scheme, 427 virtual void registerProtocolHandler(const blink::WebString& scheme,
430 const blink::WebURL& base_url, 428 const blink::WebURL& base_url,
431 const blink::WebURL& url, 429 const blink::WebURL& url,
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 // use the Observer interface to filter IPC messages and receive frame change 1131 // use the Observer interface to filter IPC messages and receive frame change
1134 // notifications. 1132 // notifications.
1135 // --------------------------------------------------------------------------- 1133 // ---------------------------------------------------------------------------
1136 1134
1137 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1135 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1138 }; 1136 };
1139 1137
1140 } // namespace content 1138 } // namespace content
1141 1139
1142 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1140 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698