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

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: Fix gn build Created 4 years, 8 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 void AccessibilitySetSelection(int anchor_object_id, 181 void AccessibilitySetSelection(int anchor_object_id,
182 int anchor_offset, 182 int anchor_offset,
183 int focus_object_id, 183 int focus_object_id,
184 int focus_offset) override; 184 int focus_offset) override;
185 void AccessibilitySetValue(int acc_obj_id, const base::string16& value) 185 void AccessibilitySetValue(int acc_obj_id, const base::string16& value)
186 override; 186 override;
187 bool AccessibilityViewHasFocus() const override; 187 bool AccessibilityViewHasFocus() const override;
188 gfx::Rect AccessibilityGetViewBounds() const override; 188 gfx::Rect AccessibilityGetViewBounds() const override;
189 gfx::Point AccessibilityOriginInScreen( 189 gfx::Point AccessibilityOriginInScreen(
190 const gfx::Rect& bounds) const override; 190 const gfx::Rect& bounds) const override;
191 gfx::Rect AccessibilityTransformToRootCoordSpace(
192 const gfx::Rect& bounds) override;
193 SiteInstance* AccessibilityGetSiteInstance() override;
191 void AccessibilityHitTest(const gfx::Point& point) override; 194 void AccessibilityHitTest(const gfx::Point& point) override;
192 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override; 195 void AccessibilitySetAccessibilityFocus(int acc_obj_id) override;
193 void AccessibilityFatalError() override; 196 void AccessibilityFatalError() override;
194 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 197 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
195 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 198 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
196 199
197 // SiteInstanceImpl::Observer 200 // SiteInstanceImpl::Observer
198 void RenderProcessGone(SiteInstanceImpl* site_instance) override; 201 void RenderProcessGone(SiteInstanceImpl* site_instance) override;
199 202
200 // Creates a RenderFrame in the renderer process. 203 // Creates a RenderFrame in the renderer process.
(...skipping 741 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