Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: chrome/browser/accessibility/accessibility_win_browsertest.cc

Issue 3591003: Make BrowserAccessibilityManager cross platform. Step 1.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Some cleanup. Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698