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

Side by Side Diff: content/browser/accessibility/browser_accessibility_android.h

Issue 2319903003: Don't expose Android set selection accessibility action for empty text fields (Closed)
Patch Set: Update one test expectation Created 4 years, 2 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_ACCESSIBILITY_BROWSER_ACCESSIBILITY_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_ANDROID_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_ANDROID_H_ 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_ANDROID_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 bool IsPassword() const; 44 bool IsPassword() const;
45 bool IsRangeType() const; 45 bool IsRangeType() const;
46 bool IsScrollable() const; 46 bool IsScrollable() const;
47 bool IsSelected() const; 47 bool IsSelected() const;
48 bool IsSlider() const; 48 bool IsSlider() const;
49 bool IsVisibleToUser() const; 49 bool IsVisibleToUser() const;
50 50
51 bool CanOpenPopup() const; 51 bool CanOpenPopup() const;
52 52
53 bool HasFocusableChild() const; 53 bool HasFocusableChild() const;
54 bool HasNonEmptyValue() const;
54 55
55 const char* GetClassName() const; 56 const char* GetClassName() const;
56 base::string16 GetText() const override; 57 base::string16 GetText() const override;
57 58
58 base::string16 GetRoleDescription() const; 59 base::string16 GetRoleDescription() const;
59 60
60 int GetItemIndex() const; 61 int GetItemIndex() const;
61 int GetItemCount() const; 62 int GetItemCount() const;
62 63
63 bool CanScrollForward() const; 64 bool CanScrollForward() const;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 bool first_time_; 145 bool first_time_;
145 base::string16 old_value_; 146 base::string16 old_value_;
146 base::string16 new_value_; 147 base::string16 new_value_;
147 148
148 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityAndroid); 149 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityAndroid);
149 }; 150 };
150 151
151 } // namespace content 152 } // namespace content
152 153
153 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_ANDROID_H_ 154 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_ANDROID_H_
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility.cc ('k') | content/browser/accessibility/browser_accessibility_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698