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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return gfx::Rect from AccessibilityTransformToRootCoordSpace, get rid of ifdefed-out code accidenta… Created 4 years, 9 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 void AccessibilitySetSelection(int anchor_object_id, 192 void AccessibilitySetSelection(int anchor_object_id,
193 int anchor_offset, 193 int anchor_offset,
194 int focus_object_id, 194 int focus_object_id,
195 int focus_offset) override; 195 int focus_offset) override;
196 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) 196 void AccessibilitySetValue(int acc_obj_id, const base::string16& value)
197 override; 197 override;
198 bool AccessibilityViewHasFocus() const override; 198 bool AccessibilityViewHasFocus() const override;
199 gfx::Rect AccessibilityGetViewBounds() const override; 199 gfx::Rect AccessibilityGetViewBounds() const override;
200 gfx::Point AccessibilityOriginInScreen( 200 gfx::Point AccessibilityOriginInScreen(
201 const gfx::Rect& bounds) const override; 201 const gfx::Rect& bounds) const override;
202 gfx::Rect AccessibilityTransformToRootCoordSpace(
203 const gfx::Rect& bounds) override;
204 SiteInstance* AccessibilityGetSiteInstance() override;
202 void AccessibilityHitTest(const gfx::Point& point) override; 205 void AccessibilityHitTest(const gfx::Point& point) override;
203 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; 206 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override;
204 void AccessibilityFatalError() override; 207 void AccessibilityFatalError() override;
205 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 208 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
206 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 209 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
207 210
208 // SiteInstanceImpl::Observer 211 // SiteInstanceImpl::Observer
209 void RenderProcessGone(SiteInstanceImpl* site_instance) override; 212 void RenderProcessGone(SiteInstanceImpl* site_instance) override;
210 213
211 // Creates a RenderFrame in the renderer process. 214 // Creates a RenderFrame in the renderer process.
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 945
943 // NOTE: This must be the last member. 946 // NOTE: This must be the last member.
944 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 947 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
945 948
946 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 949 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
947 }; 950 };
948 951
949 } // namespace content 952 } // namespace content
950 953
951 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 954 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698