| 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 <oleacc.h> | 5 #include <oleacc.h> |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "base/win/scoped_comptr.h" | 8 #include "base/win/scoped_comptr.h" |
| 9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 10 #include "chrome/browser/ui/browser_window.h" | 10 #include "chrome/browser/ui/browser_window.h" |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 ASSERT_EQ(S_OK, hr); | 278 ASSERT_EQ(S_OK, hr); |
| 279 ASSERT_TRUE(NULL != acc_obj); | 279 ASSERT_TRUE(NULL != acc_obj); |
| 280 | 280 |
| 281 TestAccessibilityInfo( | 281 TestAccessibilityInfo( |
| 282 acc_obj, | 282 acc_obj, |
| 283 UTF16ToWide(l10n_util::GetStringUTF16(IDS_ABOUT_CHROME_TITLE)), | 283 UTF16ToWide(l10n_util::GetStringUTF16(IDS_ABOUT_CHROME_TITLE)), |
| 284 ROLE_SYSTEM_DIALOG); | 284 ROLE_SYSTEM_DIALOG); |
| 285 | 285 |
| 286 acc_obj->Release(); | 286 acc_obj->Release(); |
| 287 } | 287 } |
| OLD | NEW |