| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_RENDERER_ACCESSIBILITY_BLINK_AX_ENUM_CONVERSION_H_ | 5 #ifndef CONTENT_RENDERER_ACCESSIBILITY_BLINK_AX_ENUM_CONVERSION_H_ |
| 6 #define CONTENT_RENDERER_ACCESSIBILITY_BLINK_AX_ENUM_CONVERSION_H_ | 6 #define CONTENT_RENDERER_ACCESSIBILITY_BLINK_AX_ENUM_CONVERSION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "third_party/WebKit/public/web/WebAXObject.h" | 10 #include "third_party/WebKit/public/web/WebAXObject.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 blink::WebAXInvalidState invalid_state); | 38 blink::WebAXInvalidState invalid_state); |
| 39 | 39 |
| 40 ui::AXSortDirection AXSortDirectionFromBlink( | 40 ui::AXSortDirection AXSortDirectionFromBlink( |
| 41 blink::WebAXSortDirection sort_direction); | 41 blink::WebAXSortDirection sort_direction); |
| 42 | 42 |
| 43 ui::AXNameFrom AXNameFromFromBlink(blink::WebAXNameFrom name_from); | 43 ui::AXNameFrom AXNameFromFromBlink(blink::WebAXNameFrom name_from); |
| 44 | 44 |
| 45 ui::AXDescriptionFrom AXDescriptionFromFromBlink( | 45 ui::AXDescriptionFrom AXDescriptionFromFromBlink( |
| 46 blink::WebAXDescriptionFrom description_from); | 46 blink::WebAXDescriptionFrom description_from); |
| 47 | 47 |
| 48 ui::AXTextAffinity AXTextAffinityFromBlink(blink::WebAXTextAffinity affinity); |
| 49 |
| 48 } // namespace content | 50 } // namespace content |
| 49 | 51 |
| 50 #endif // CONTENT_RENDERER_ACCESSIBILITY_BLINK_AX_ENUM_CONVERSION_H_ | 52 #endif // CONTENT_RENDERER_ACCESSIBILITY_BLINK_AX_ENUM_CONVERSION_H_ |
| OLD | NEW |