| 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_CHROME_FRAME_ACTIVEX_BASE_H_ | 5 #ifndef CHROME_FRAME_CHROME_FRAME_ACTIVEX_BASE_H_ |
| 6 #define CHROME_FRAME_CHROME_FRAME_ACTIVEX_BASE_H_ | 6 #define CHROME_FRAME_CHROME_FRAME_ACTIVEX_BASE_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> |
| 11 #include <wininet.h> | 11 #include <wininet.h> |
| 12 #include <shdeprecated.h> // for IBrowserService2 | 12 #include <shdeprecated.h> // for IBrowserService2 |
| 13 #include <shlguid.h> | 13 #include <shlguid.h> |
| 14 | 14 |
| 15 #include <set> | 15 #include <set> |
| 16 #include <string> | 16 #include <string> |
| 17 #include <vector> | 17 #include <vector> |
| 18 | 18 |
| 19 #include "base/metrics/histogram.h" | 19 #include "base/metrics/histogram.h" |
| 20 #include "base/string_util.h" | 20 #include "base/string_util.h" |
| 21 #include "base/stringprintf.h" | 21 #include "base/stringprintf.h" |
| 22 #include "base/utf_string_conversions.h" | 22 #include "base/utf_string_conversions.h" |
| 23 #include "base/win/atlcheck.h" |
| 23 #include "base/win/scoped_bstr.h" | 24 #include "base/win/scoped_bstr.h" |
| 24 #include "base/win/scoped_comptr.h" | 25 #include "base/win/scoped_comptr.h" |
| 25 #include "base/win/scoped_variant.h" | 26 #include "base/win/scoped_variant.h" |
| 26 #include "grit/chrome_frame_resources.h" | 27 #include "grit/chrome_frame_resources.h" |
| 27 #include "chrome/common/url_constants.h" | 28 #include "chrome/common/url_constants.h" |
| 28 #include "chrome_frame/chrome_frame_plugin.h" | 29 #include "chrome_frame/chrome_frame_plugin.h" |
| 29 #include "chrome_frame/com_message_event.h" | 30 #include "chrome_frame/com_message_event.h" |
| 30 #include "chrome_frame/com_type_info_holder.h" | 31 #include "chrome_frame/com_type_info_holder.h" |
| 31 #include "chrome_frame/simple_resource_loader.h" | 32 #include "chrome_frame/simple_resource_loader.h" |
| 32 #include "chrome_frame/urlmon_url_request.h" | 33 #include "chrome_frame/urlmon_url_request.h" |
| (...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1273 EventHandlers onreadystatechanged_; | 1274 EventHandlers onreadystatechanged_; |
| 1274 EventHandlers onprivatemessage_; | 1275 EventHandlers onprivatemessage_; |
| 1275 EventHandlers onextensionready_; | 1276 EventHandlers onextensionready_; |
| 1276 | 1277 |
| 1277 // Handle network requests when host network stack is used. Passed to the | 1278 // Handle network requests when host network stack is used. Passed to the |
| 1278 // automation client on initialization. | 1279 // automation client on initialization. |
| 1279 scoped_ptr<UrlmonUrlRequestManager> url_fetcher_; | 1280 scoped_ptr<UrlmonUrlRequestManager> url_fetcher_; |
| 1280 }; | 1281 }; |
| 1281 | 1282 |
| 1282 #endif // CHROME_FRAME_CHROME_FRAME_ACTIVEX_BASE_H_ | 1283 #endif // CHROME_FRAME_CHROME_FRAME_ACTIVEX_BASE_H_ |
| OLD | NEW |