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 "chrome_frame/test/chrome_frame_ui_test_utils.h" | 5 #include "chrome_frame/test/chrome_frame_ui_test_utils.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include <sstream> | 9 #include <sstream> |
10 #include <stack> | 10 #include <stack> |
11 | 11 |
12 #include "base/bind.h" | 12 #include "base/bind.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
16 #include "base/string_util.h" | 16 #include "base/strings/string_util.h" |
17 #include "base/stringprintf.h" | 17 #include "base/strings/stringprintf.h" |
18 #include "base/strings/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "base/win/scoped_bstr.h" | 19 #include "base/win/scoped_bstr.h" |
20 #include "chrome/common/chrome_paths.h" | 20 #include "chrome/common/chrome_paths.h" |
21 #include "chrome_frame/test/win_event_receiver.h" | 21 #include "chrome_frame/test/win_event_receiver.h" |
22 #include "chrome_frame/utils.h" | 22 #include "chrome_frame/utils.h" |
23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
24 #include "third_party/iaccessible2/ia2_api_all.h" | 24 #include "third_party/iaccessible2/ia2_api_all.h" |
25 #include "ui/gfx/point.h" | 25 #include "ui/gfx/point.h" |
26 #include "ui/gfx/rect.h" | 26 #include "ui/gfx/rect.h" |
27 | 27 |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 return desk; | 739 return desk; |
740 } | 740 } |
741 | 741 |
742 base::FilePath GetIAccessible2ProxyStubPath() { | 742 base::FilePath GetIAccessible2ProxyStubPath() { |
743 base::FilePath path; | 743 base::FilePath path; |
744 PathService::Get(chrome::DIR_APP, &path); | 744 PathService::Get(chrome::DIR_APP, &path); |
745 return path.AppendASCII("IAccessible2Proxy.dll"); | 745 return path.AppendASCII("IAccessible2Proxy.dll"); |
746 } | 746 } |
747 | 747 |
748 } // namespace chrome_frame_test | 748 } // namespace chrome_frame_test |
OLD | NEW |