| 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/browser_accessibility_manager_win.h" | 5 #include "content/browser/accessibility/browser_accessibility_manager_win.h" |
| 6 | 6 |
| 7 #include <vector> |
| 8 |
| 7 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 8 #include "base/win/scoped_comptr.h" | 10 #include "base/win/scoped_comptr.h" |
| 9 #include "base/win/windows_version.h" | 11 #include "base/win/windows_version.h" |
| 10 #include "content/browser/accessibility/browser_accessibility_state_impl.h" | 12 #include "content/browser/accessibility/browser_accessibility_state_impl.h" |
| 11 #include "content/browser/accessibility/browser_accessibility_win.h" | 13 #include "content/browser/accessibility/browser_accessibility_win.h" |
| 12 #include "content/browser/renderer_host/legacy_render_widget_host_win.h" | 14 #include "content/browser/renderer_host/legacy_render_widget_host_win.h" |
| 13 #include "content/common/accessibility_messages.h" | 15 #include "content/common/accessibility_messages.h" |
| 14 #include "ui/base/win/atl_module.h" | 16 #include "ui/base/win/atl_module.h" |
| 15 | 17 |
| 16 namespace content { | 18 namespace content { |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 child_manager->GetFromUniqueIdWin(unique_id_win); | 374 child_manager->GetFromUniqueIdWin(unique_id_win); |
| 373 if (result) | 375 if (result) |
| 374 return result; | 376 return result; |
| 375 } | 377 } |
| 376 } | 378 } |
| 377 | 379 |
| 378 return NULL; | 380 return NULL; |
| 379 } | 381 } |
| 380 | 382 |
| 381 } // namespace content | 383 } // namespace content |
| OLD | NEW |