| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |