| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 #include <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "base/strings/string_number_conversions.h" | 7 #include "base/strings/string_number_conversions.h" |
| 8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
| 9 #include "content/browser/accessibility/accessibility_tree_formatter_blink.h" | 9 #include "content/browser/accessibility/accessibility_tree_formatter_blink.h" |
| 10 #include "ui/accessibility/ax_enums.h" |
| 10 #include "ui/gfx/transform.h" | 11 #include "ui/gfx/transform.h" |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 | 14 |
| 14 AccessibilityTreeFormatterBlink::AccessibilityTreeFormatterBlink() | 15 AccessibilityTreeFormatterBlink::AccessibilityTreeFormatterBlink() |
| 15 : AccessibilityTreeFormatter() { | 16 : AccessibilityTreeFormatter() { |
| 16 } | 17 } |
| 17 | 18 |
| 18 AccessibilityTreeFormatterBlink::~AccessibilityTreeFormatterBlink() { | 19 AccessibilityTreeFormatterBlink::~AccessibilityTreeFormatterBlink() { |
| 19 } | 20 } |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 236 |
| 236 const std::string AccessibilityTreeFormatterBlink::GetAllowString() { | 237 const std::string AccessibilityTreeFormatterBlink::GetAllowString() { |
| 237 return "@BLINK-ALLOW:"; | 238 return "@BLINK-ALLOW:"; |
| 238 } | 239 } |
| 239 | 240 |
| 240 const std::string AccessibilityTreeFormatterBlink::GetDenyString() { | 241 const std::string AccessibilityTreeFormatterBlink::GetDenyString() { |
| 241 return "@BLINK-DENY:"; | 242 return "@BLINK-DENY:"; |
| 242 } | 243 } |
| 243 | 244 |
| 244 } // namespace content | 245 } // namespace content |
| OLD | NEW |