OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_IE_EVENT_SINK_H_ | 5 #ifndef CHROME_FRAME_TEST_IE_EVENT_SINK_H_ |
6 #define CHROME_FRAME_TEST_IE_EVENT_SINK_H_ | 6 #define CHROME_FRAME_TEST_IE_EVENT_SINK_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlwin.h> | 9 #include <atlwin.h> |
10 #include <exdispid.h> | 10 #include <exdispid.h> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/scoped_comptr_win.h" | 13 #include "base/scoped_comptr_win.h" |
| 14 #include "base/win/atlcheck.h" |
14 | 15 |
15 #include "chrome_frame/test_utils.h" | 16 #include "chrome_frame/test_utils.h" |
16 #include "chrome_frame/test/simulate_input.h" | 17 #include "chrome_frame/test/simulate_input.h" |
17 | 18 |
18 // Include without path to make GYP build see it. | 19 // Include without path to make GYP build see it. |
19 #include "chrome_tab.h" // NOLINT | 20 #include "chrome_tab.h" // NOLINT |
20 | 21 |
21 namespace chrome_frame_test { | 22 namespace chrome_frame_test { |
22 | 23 |
23 // Listener for all events from the IEEventSink, defined below. This includes | 24 // Listener for all events from the IEEventSink, defined below. This includes |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 listener_ = listener; | 282 listener_ = listener; |
282 } | 283 } |
283 | 284 |
284 protected: | 285 protected: |
285 PropertyNotifySinkListener* listener_; | 286 PropertyNotifySinkListener* listener_; |
286 }; | 287 }; |
287 | 288 |
288 } // namespace chrome_frame_test | 289 } // namespace chrome_frame_test |
289 | 290 |
290 #endif // CHROME_FRAME_TEST_IE_EVENT_SINK_H_ | 291 #endif // CHROME_FRAME_TEST_IE_EVENT_SINK_H_ |
OLD | NEW |