| 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 #include "chrome_frame/bho.h" | 5 #include "chrome_frame/bho.h" |
| 6 | 6 |
| 7 #include <shlguid.h> | 7 #include <shlguid.h> |
| 8 | 8 |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
| 12 #include "base/registry.h" | 12 #include "base/registry.h" |
| 13 #include "base/scoped_bstr_win.h" | 13 #include "base/scoped_bstr_win.h" |
| 14 #include "base/scoped_variant_win.h" | 14 #include "base/scoped_variant_win.h" |
| 15 #include "base/string_util.h" | 15 #include "base/string_util.h" |
| 16 #include "chrome_tab.h" // NOLINT | 16 #include "chrome_tab.h" // NOLINT |
| 17 #include "chrome_frame/crash_metrics.h" | 17 #include "chrome_frame/crash_reporting/crash_metrics.h" |
| 18 #include "chrome_frame/extra_system_apis.h" | 18 #include "chrome_frame/extra_system_apis.h" |
| 19 #include "chrome_frame/http_negotiate.h" | 19 #include "chrome_frame/http_negotiate.h" |
| 20 #include "chrome_frame/metrics_service.h" | 20 #include "chrome_frame/metrics_service.h" |
| 21 #include "chrome_frame/protocol_sink_wrap.h" | 21 #include "chrome_frame/protocol_sink_wrap.h" |
| 22 #include "chrome_frame/urlmon_moniker.h" | 22 #include "chrome_frame/urlmon_moniker.h" |
| 23 #include "chrome_frame/utils.h" | 23 #include "chrome_frame/utils.h" |
| 24 #include "chrome_frame/vtable_patch_manager.h" | 24 #include "chrome_frame/vtable_patch_manager.h" |
| 25 | 25 |
| 26 static const int kIBrowserServiceOnHttpEquivIndex = 30; | 26 static const int kIBrowserServiceOnHttpEquivIndex = 30; |
| 27 | 27 |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 } else if (state_ == PATCH_IBROWSER) { | 378 } else if (state_ == PATCH_IBROWSER) { |
| 379 vtable_patch::UnpatchInterfaceMethods(IBrowserService_PatchInfo); | 379 vtable_patch::UnpatchInterfaceMethods(IBrowserService_PatchInfo); |
| 380 MonikerPatch::Uninitialize(); | 380 MonikerPatch::Uninitialize(); |
| 381 } | 381 } |
| 382 | 382 |
| 383 HttpNegotiatePatch::Uninitialize(); | 383 HttpNegotiatePatch::Uninitialize(); |
| 384 | 384 |
| 385 state_ = UNKNOWN; | 385 state_ = UNKNOWN; |
| 386 } | 386 } |
| 387 | 387 |
| OLD | NEW |