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 #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/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
15 #include "base/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
17 #include "base/win/object_watcher.h" | 17 #include "base/win/object_watcher.h" |
18 #include "chrome_frame/test/chrome_frame_test_utils.h" | 18 #include "chrome_frame/test/chrome_frame_test_utils.h" |
19 #include "chrome_frame/test/chrome_frame_ui_test_utils.h" | 19 #include "chrome_frame/test/chrome_frame_ui_test_utils.h" |
20 #include "chrome_frame/test/ie_event_sink.h" | 20 #include "chrome_frame/test/ie_event_sink.h" |
21 #include "chrome_frame/test/test_server.h" | 21 #include "chrome_frame/test/test_server.h" |
22 #include "chrome_frame/test/test_with_web_server.h" | 22 #include "chrome_frame/test/test_with_web_server.h" |
23 #include "chrome_frame/test/win_event_receiver.h" | 23 #include "chrome_frame/test/win_event_receiver.h" |
24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 testing::StrictMock<MockIEEventSink> ie_mock_; | 359 testing::StrictMock<MockIEEventSink> ie_mock_; |
360 testing::StrictMock<MockWebServer> server_mock_; | 360 testing::StrictMock<MockWebServer> server_mock_; |
361 scoped_refptr<HungCOMCallDetector> hung_call_detector_; | 361 scoped_refptr<HungCOMCallDetector> hung_call_detector_; |
362 private: | 362 private: |
363 DISALLOW_COPY_AND_ASSIGN(MockIEEventSinkTest); | 363 DISALLOW_COPY_AND_ASSIGN(MockIEEventSinkTest); |
364 }; | 364 }; |
365 | 365 |
366 } // namespace chrome_frame_test | 366 } // namespace chrome_frame_test |
367 | 367 |
368 #endif // CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ | 368 #endif // CHROME_FRAME_TEST_MOCK_IE_EVENT_SINK_TEST_H_ |
OLD | NEW |