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

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: Fix compile 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 void AccessibilitySetFocus(int acc_obj_id) override; 127 void AccessibilitySetFocus(int acc_obj_id) override;
128 void AccessibilityDoDefaultAction(int acc_obj_id) override; 128 void AccessibilityDoDefaultAction(int acc_obj_id) override;
129 void AccessibilityShowMenu(const gfx::Point& global_point) override; 129 void AccessibilityShowMenu(const gfx::Point& global_point) override;
130 void AccessibilityScrollToMakeVisible(int acc_obj_id, 130 void AccessibilityScrollToMakeVisible(int acc_obj_id,
131 const gfx::Rect& subfocus) override; 131 const gfx::Rect& subfocus) override;
132 void AccessibilityScrollToPoint(int acc_obj_id, 132 void AccessibilityScrollToPoint(int acc_obj_id,
133 const gfx::Point& point) override; 133 const gfx::Point& point) override;
134 void AccessibilitySetTextSelection(int acc_obj_id, 134 void AccessibilitySetTextSelection(int acc_obj_id,
135 int start_offset, 135 int start_offset,
136 int end_offset) override; 136 int end_offset) override;
137 void AccessibilitySetValue(int acc_obj_id, const base::string16& value)
138 override;
137 bool AccessibilityViewHasFocus() const override; 139 bool AccessibilityViewHasFocus() const override;
138 gfx::Rect AccessibilityGetViewBounds() const override; 140 gfx::Rect AccessibilityGetViewBounds() const override;
139 gfx::Point AccessibilityOriginInScreen( 141 gfx::Point AccessibilityOriginInScreen(
140 const gfx::Rect& bounds) const override; 142 const gfx::Rect& bounds) const override;
141 void AccessibilityHitTest(const gfx::Point& point) override; 143 void AccessibilityHitTest(const gfx::Point& point) override;
142 void AccessibilityFatalError() override; 144 void AccessibilityFatalError() override;
143 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 145 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
144 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 146 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
145 BrowserAccessibilityManager* AccessibilityGetChildFrame( 147 BrowserAccessibilityManager* AccessibilityGetChildFrame(
146 int accessibility_node_id) override; 148 int accessibility_node_id) override;
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 603
602 // NOTE: This must be the last member. 604 // NOTE: This must be the last member.
603 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 605 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
604 606
605 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 607 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
606 }; 608 };
607 609
608 } // namespace content 610 } // namespace content
609 611
610 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 612 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698