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 #ifndef CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ | 5 #ifndef CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ |
6 #define CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ | 6 #define CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlcom.h> | 9 #include <atlcom.h> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/string_number_conversions.h" | 14 #include "base/string_number_conversions.h" |
15 #include "base/stringprintf.h" | 15 #include "base/stringprintf.h" |
16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
| 17 #include "base/win/atlcheck.h" |
17 #include "base/win/object_watcher.h" | 18 #include "base/win/object_watcher.h" |
18 #include "chrome_frame/test/chrome_frame_test_utils.h" | 19 #include "chrome_frame/test/chrome_frame_test_utils.h" |
19 #include "chrome_frame/test/chrome_frame_ui_test_utils.h" | 20 #include "chrome_frame/test/chrome_frame_ui_test_utils.h" |
20 #include "chrome_frame/test/ie_event_sink.h" | 21 #include "chrome_frame/test/ie_event_sink.h" |
21 #include "chrome_frame/test/test_server.h" | 22 #include "chrome_frame/test/test_server.h" |
22 #include "chrome_frame/test/test_with_web_server.h" | 23 #include "chrome_frame/test/test_with_web_server.h" |
23 #include "chrome_frame/test/win_event_receiver.h" | 24 #include "chrome_frame/test/win_event_receiver.h" |
24 #include "testing/gmock/include/gmock/gmock.h" | 25 #include "testing/gmock/include/gmock/gmock.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
26 #include "third_party/xulrunner-sdk/win/include/accessibility/AccessibleEventId.
h" | 27 #include "third_party/xulrunner-sdk/win/include/accessibility/AccessibleEventId.
h" |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 testing::StrictMock<MockIEEventSink> ie_mock_; | 333 testing::StrictMock<MockIEEventSink> ie_mock_; |
333 testing::StrictMock<MockWebServer> server_mock_; | 334 testing::StrictMock<MockWebServer> server_mock_; |
334 scoped_refptr<HungCOMCallDetector> hung_call_detector_; | 335 scoped_refptr<HungCOMCallDetector> hung_call_detector_; |
335 private: | 336 private: |
336 DISALLOW_COPY_AND_ASSIGN(MockIEEventSinkTest); | 337 DISALLOW_COPY_AND_ASSIGN(MockIEEventSinkTest); |
337 }; | 338 }; |
338 | 339 |
339 } // namespace chrome_frame_test | 340 } // namespace chrome_frame_test |
340 | 341 |
341 #endif // CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ | 342 #endif // CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ |
OLD | NEW |