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 <oleacc.h> | 5 #include <oleacc.h> |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "base/scoped_comptr_win.h" | 8 #include "base/scoped_comptr_win.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome/browser/browser.h" | 10 #include "chrome/browser/browser.h" |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 reinterpret_cast<void**>(&acc_obj)); | 256 reinterpret_cast<void**>(&acc_obj)); |
257 ASSERT_EQ(S_OK, hr); | 257 ASSERT_EQ(S_OK, hr); |
258 ASSERT_TRUE(NULL != acc_obj); | 258 ASSERT_TRUE(NULL != acc_obj); |
259 | 259 |
260 TestAccessibilityInfo(acc_obj, l10n_util::GetString(IDS_ABOUT_CHROME_TITLE), | 260 TestAccessibilityInfo(acc_obj, l10n_util::GetString(IDS_ABOUT_CHROME_TITLE), |
261 ROLE_SYSTEM_DIALOG); | 261 ROLE_SYSTEM_DIALOG); |
262 | 262 |
263 acc_obj->Release(); | 263 acc_obj->Release(); |
264 } | 264 } |
265 } // Namespace. | 265 } // Namespace. |
OLD | NEW |