OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <atlbase.h> | 5 #include <atlbase.h> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/scoped_comptr_win.h" | 8 #include "base/scoped_comptr_win.h" |
9 #include "chrome/browser/automation/ui_controls.h" | 9 #include "chrome/browser/automation/ui_controls.h" |
10 #include "chrome/browser/browser.h" | 10 #include "chrome/browser/browser.h" |
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 // If pointer comparison fails resort to the exhuasive search that can use | 643 // If pointer comparison fails resort to the exhuasive search that can use |
644 // IAccessible2::get_uniqueID for equality comparison. | 644 // IAccessible2::get_uniqueID for equality comparison. |
645 if (!found) { | 645 if (!found) { |
646 AccessibleContainsAccessible( | 646 AccessibleContainsAccessible( |
647 browser_accessible, document_accessible2, &found); | 647 browser_accessible, document_accessible2, &found); |
648 } | 648 } |
649 | 649 |
650 ASSERT_EQ(found, true); | 650 ASSERT_EQ(found, true); |
651 } | 651 } |
652 } // namespace. | 652 } // namespace. |
OLD | NEW |