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 // Executor COM implementation unit tests. | 5 // Executor COM implementation unit tests. |
6 | 6 |
7 #include "ceee/ie/plugin/bho/executor.h" | 7 #include "ceee/ie/plugin/bho/executor.h" |
8 | 8 |
9 #include <shlobj.h> | 9 #include <shlobj.h> |
10 #include <atlbase.h> | 10 #include <atlbase.h> |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
15 #include "base/process_util.h" | 15 #include "base/process_util.h" |
16 #include "base/thread.h" | 16 #include "base/threading/thread.h" |
17 #include "base/win/registry.h" | 17 #include "base/win/registry.h" |
18 #include "base/win/windows_version.h" | 18 #include "base/win/windows_version.h" |
19 #include "ceee/common/initializing_coclass.h" | 19 #include "ceee/common/initializing_coclass.h" |
20 #include "ceee/ie/plugin/toolband/toolband_proxy.h" | 20 #include "ceee/ie/plugin/toolband/toolband_proxy.h" |
21 #include "ceee/ie/testing/mock_broker_and_friends.h" | 21 #include "ceee/ie/testing/mock_broker_and_friends.h" |
22 #include "ceee/testing/utils/instance_count_mixin.h" | 22 #include "ceee/testing/utils/instance_count_mixin.h" |
23 #include "gmock/gmock.h" | 23 #include "gmock/gmock.h" |
24 #include "gtest/gtest.h" | 24 #include "gtest/gtest.h" |
25 | 25 |
26 namespace { | 26 namespace { |
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 .WillOnce( | 753 .WillOnce( |
754 DoAll( | 754 DoAll( |
755 QuitMessageLoop(&loop_), | 755 QuitMessageLoop(&loop_), |
756 Return(E_CAFEBABE))); | 756 Return(E_CAFEBABE))); |
757 } | 757 } |
758 | 758 |
759 loop_.Run(); | 759 loop_.Run(); |
760 } | 760 } |
761 | 761 |
762 } // namespace | 762 } // namespace |
OLD | NEW |