OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_CHROME_FRAME_ACTIVEX_H_ | 5 #ifndef CHROME_FRAME_CHROME_FRAME_ACTIVEX_H_ |
6 #define CHROME_FRAME_CHROME_FRAME_ACTIVEX_H_ | 6 #define CHROME_FRAME_CHROME_FRAME_ACTIVEX_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlcom.h> | 9 #include <atlcom.h> |
10 #include <atlctl.h> | 10 #include <atlctl.h> |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 | 118 |
119 // Invokes all registered handlers in a vector of event handlers. | 119 // Invokes all registered handlers in a vector of event handlers. |
120 void FireEvent(const EventHandlers& handlers, IDispatch* event); | 120 void FireEvent(const EventHandlers& handlers, IDispatch* event); |
121 | 121 |
122 // This variant is used for the privatemessage handler only. | 122 // This variant is used for the privatemessage handler only. |
123 void FireEvent(const EventHandlers& handlers, IDispatch* event, | 123 void FireEvent(const EventHandlers& handlers, IDispatch* event, |
124 BSTR target); | 124 BSTR target); |
125 | 125 |
126 }; | 126 }; |
127 | 127 |
128 OBJECT_ENTRY_AUTO(__uuidof(ChromeFrame), ChromeFrameActivex) | |
129 | |
130 #endif // CHROME_FRAME_CHROME_FRAME_ACTIVEX_H_ | 128 #endif // CHROME_FRAME_CHROME_FRAME_ACTIVEX_H_ |
OLD | NEW |