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 // IE toolband implementation. | 5 // IE toolband implementation. |
6 #ifndef CEEE_IE_PLUGIN_TOOLBAND_TOOL_BAND_H_ | 6 #ifndef CEEE_IE_PLUGIN_TOOLBAND_TOOL_BAND_H_ |
7 #define CEEE_IE_PLUGIN_TOOLBAND_TOOL_BAND_H_ | 7 #define CEEE_IE_PLUGIN_TOOLBAND_TOOL_BAND_H_ |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlapp.h> // Must be included AFTER base. | 10 #include <atlapp.h> // Must be included AFTER base. |
11 #include <atlcom.h> | 11 #include <atlcom.h> |
12 #include <atlcrack.h> | 12 #include <atlcrack.h> |
13 #include <atlgdi.h> | 13 #include <atlgdi.h> |
14 #include <atlwin.h> | 14 #include <atlwin.h> |
15 #include <atlmisc.h> | 15 #include <atlmisc.h> |
16 #include <exdispid.h> | 16 #include <exdispid.h> |
17 #include <shobjidl.h> | 17 #include <shobjidl.h> |
18 #include <list> | 18 #include <list> |
19 #include <string> | 19 #include <string> |
20 | 20 |
21 #include "base/basictypes.h" | 21 #include "base/basictypes.h" |
22 #include "base/scoped_ptr.h" | 22 #include "base/scoped_ptr.h" |
23 #include "base/win/scoped_comptr.h" | 23 #include "base/win/scoped_comptr.h" |
24 #include "base/win/rgs_helper.h" | 24 #include "ceee/ie/common/rgs_helper.h" |
25 #include "ceee/ie/plugin/toolband/resource.h" | 25 #include "ceee/ie/plugin/toolband/resource.h" |
26 | 26 |
27 #include "chrome_tab.h" // NOLINT | 27 #include "chrome_tab.h" // NOLINT |
28 #include "toolband.h" // NOLINT | 28 #include "toolband.h" // NOLINT |
29 | 29 |
30 class DictionaryValue; | 30 class DictionaryValue; |
31 class PageApi; | 31 class PageApi; |
32 class ToolBand; | 32 class ToolBand; |
33 class DictionaryValue; | 33 class DictionaryValue; |
34 class Value; | 34 class Value; |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 static _ATL_FUNC_INFO handler_type_long_; | 272 static _ATL_FUNC_INFO handler_type_long_; |
273 static _ATL_FUNC_INFO handler_type_idispatch_bstr_; | 273 static _ATL_FUNC_INFO handler_type_idispatch_bstr_; |
274 static _ATL_FUNC_INFO handler_type_bstr_i4_; | 274 static _ATL_FUNC_INFO handler_type_bstr_i4_; |
275 static _ATL_FUNC_INFO handler_type_bstrarray_; | 275 static _ATL_FUNC_INFO handler_type_bstrarray_; |
276 static _ATL_FUNC_INFO handler_type_idispatch_variantref_; | 276 static _ATL_FUNC_INFO handler_type_idispatch_variantref_; |
277 | 277 |
278 DISALLOW_COPY_AND_ASSIGN(ToolBand); | 278 DISALLOW_COPY_AND_ASSIGN(ToolBand); |
279 }; | 279 }; |
280 | 280 |
281 #endif // CEEE_IE_PLUGIN_TOOLBAND_TOOL_BAND_H_ | 281 #endif // CEEE_IE_PLUGIN_TOOLBAND_TOOL_BAND_H_ |
OLD | NEW |