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

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

Issue 681503002: Add Android AX functions to set the value and selection of a text field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@link_text_from_image
Patch Set: Add to supported actions Created 6 years, 1 month 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 <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 void AccessibilitySetFocus(int acc_obj_id) override; 128 void AccessibilitySetFocus(int acc_obj_id) override;
129 void AccessibilityDoDefaultAction(int acc_obj_id) override; 129 void AccessibilityDoDefaultAction(int acc_obj_id) override;
130 void AccessibilityShowMenu(const gfx::Point& global_point) override; 130 void AccessibilityShowMenu(const gfx::Point& global_point) override;
131 void AccessibilityScrollToMakeVisible(int acc_obj_id, 131 void AccessibilityScrollToMakeVisible(int acc_obj_id,
132 const gfx::Rect& subfocus) override; 132 const gfx::Rect& subfocus) override;
133 void AccessibilityScrollToPoint(int acc_obj_id, 133 void AccessibilityScrollToPoint(int acc_obj_id,
134 const gfx::Point& point) override; 134 const gfx::Point& point) override;
135 void AccessibilitySetTextSelection(int acc_obj_id, 135 void AccessibilitySetTextSelection(int acc_obj_id,
136 int start_offset, 136 int start_offset,
137 int end_offset) override; 137 int end_offset) override;
138 void AccessibilitySetValue(int acc_obj_id, const base::string16& value)
139 override;
138 bool AccessibilityViewHasFocus() const override; 140 bool AccessibilityViewHasFocus() const override;
139 gfx::Rect AccessibilityGetViewBounds() const override; 141 gfx::Rect AccessibilityGetViewBounds() const override;
140 gfx::Point AccessibilityOriginInScreen( 142 gfx::Point AccessibilityOriginInScreen(
141 const gfx::Rect& bounds) const override; 143 const gfx::Rect& bounds) const override;
142 void AccessibilityHitTest(const gfx::Point& point) override; 144 void AccessibilityHitTest(const gfx::Point& point) override;
143 void AccessibilityFatalError() override; 145 void AccessibilityFatalError() override;
144 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 146 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
145 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 147 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
146 BrowserAccessibilityManager* AccessibilityGetChildFrame( 148 BrowserAccessibilityManager* AccessibilityGetChildFrame(
147 int accessibility_node_id) override; 149 int accessibility_node_id) override;
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 592
591 // NOTE: This must be the last member. 593 // NOTE: This must be the last member.
592 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 594 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
593 595
594 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 596 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
595 }; 597 };
596 598
597 } // namespace content 599 } // namespace content
598 600
599 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 601 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698