| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/accessibility/accessibility_tree_formatter.h" | 5 #include "content/browser/accessibility/accessibility_tree_formatter.h" |
| 6 | 6 |
| 7 #include <oleacc.h> | 7 #include <oleacc.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "base/strings/stringprintf.h" | 13 #include "base/strings/stringprintf.h" |
| 14 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
| 15 #include "content/browser/accessibility/accessibility_tree_formatter_utils_win.h
" | 15 #include "content/browser/accessibility/accessibility_tree_formatter_utils_win.h
" |
| 16 #include "content/browser/accessibility/browser_accessibility_manager.h" | 16 #include "content/browser/accessibility/browser_accessibility_manager.h" |
| 17 #include "content/browser/accessibility/browser_accessibility_win.h" | 17 #include "content/browser/accessibility/browser_accessibility_win.h" |
| 18 #include "content/common/accessibility_node_data.h" | |
| 19 #include "third_party/iaccessible2/ia2_api_all.h" | 18 #include "third_party/iaccessible2/ia2_api_all.h" |
| 20 #include "ui/base/win/atl_module.h" | 19 #include "ui/base/win/atl_module.h" |
| 21 | 20 |
| 22 using base::StringPrintf; | 21 using base::StringPrintf; |
| 23 | 22 |
| 24 namespace content { | 23 namespace content { |
| 25 | 24 |
| 26 const char* ALL_ATTRIBUTES[] = { | 25 const char* ALL_ATTRIBUTES[] = { |
| 27 "name", | 26 "name", |
| 28 "value", | 27 "value", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 const std::string AccessibilityTreeFormatter::GetAllowString() { | 312 const std::string AccessibilityTreeFormatter::GetAllowString() { |
| 314 return "@WIN-ALLOW:"; | 313 return "@WIN-ALLOW:"; |
| 315 } | 314 } |
| 316 | 315 |
| 317 // static | 316 // static |
| 318 const std::string AccessibilityTreeFormatter::GetDenyString() { | 317 const std::string AccessibilityTreeFormatter::GetDenyString() { |
| 319 return "@WIN-DENY:"; | 318 return "@WIN-DENY:"; |
| 320 } | 319 } |
| 321 | 320 |
| 322 } // namespace content | 321 } // namespace content |
| OLD | NEW |