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 browser helper object implementation. | 5 // IE browser helper object implementation. |
6 #include "ceee/ie/plugin/bho/browser_helper_object.h" | 6 #include "ceee/ie/plugin/bho/browser_helper_object.h" |
7 | 7 |
8 #include <atlsafe.h> | 8 #include <atlsafe.h> |
9 #include <shlguid.h> | 9 #include <shlguid.h> |
10 | 10 |
11 #include <algorithm> | 11 #include <algorithm> |
12 | 12 |
13 #include "base/debug/trace_event.h" | 13 #include "base/debug/trace_event.h" |
14 #include "base/json/json_reader.h" | 14 #include "base/json/json_reader.h" |
15 #include "base/json/json_writer.h" | 15 #include "base/json/json_writer.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
| 17 #include "base/string_split.h" |
17 #include "base/string_util.h" | 18 #include "base/string_util.h" |
18 #include "base/tuple.h" | 19 #include "base/tuple.h" |
19 #include "base/utf_string_conversions.h" | 20 #include "base/utf_string_conversions.h" |
20 #include "ceee/common/com_utils.h" | 21 #include "ceee/common/com_utils.h" |
21 #include "ceee/common/window_utils.h" | 22 #include "ceee/common/window_utils.h" |
22 #include "ceee/common/windows_constants.h" | 23 #include "ceee/common/windows_constants.h" |
23 #include "ceee/ie/broker/tab_api_module.h" | 24 #include "ceee/ie/broker/tab_api_module.h" |
24 #include "ceee/ie/common/constants.h" | 25 #include "ceee/ie/common/constants.h" |
25 #include "ceee/ie/common/extension_manifest.h" | 26 #include "ceee/ie/common/extension_manifest.h" |
26 #include "ceee/ie/common/ie_util.h" | 27 #include "ceee/ie/common/ie_util.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 TRACE_EVENT_END("ceee.bho", this, ""); | 114 TRACE_EVENT_END("ceee.bho", this, ""); |
114 } | 115 } |
115 | 116 |
116 HRESULT BrowserHelperObject::FinalConstruct() { | 117 HRESULT BrowserHelperObject::FinalConstruct() { |
117 if (ceee_module_util::GetOptionToolbandIsHidden()) { | 118 if (ceee_module_util::GetOptionToolbandIsHidden()) { |
118 // Patching wininet when BHO could not be created considered pointless. | 119 // Patching wininet when BHO could not be created considered pointless. |
119 LOG(INFO) << | 120 LOG(INFO) << |
120 "Refused to instantiate the BHO when the visual component is hidden."; | 121 "Refused to instantiate the BHO when the visual component is hidden."; |
121 return E_FAIL; | 122 return E_FAIL; |
122 } | 123 } |
| 124 |
| 125 const wchar_t* bho_list = NULL; |
| 126 ::LoadString(_pModule->m_hInstResource, IDS_CEEE_NESTED_BHO_LIST, |
| 127 reinterpret_cast<wchar_t*>(&bho_list), 0); |
| 128 if (bho_list == NULL) { |
| 129 LOG(ERROR) << "Failed to load string: " << GetLastError(); |
| 130 } else { |
| 131 std::vector<std::wstring> guids; |
| 132 base::SplitString(bho_list, ',', &guids); |
| 133 for (size_t i = 0; i < guids.size(); ++i) { |
| 134 CLSID clsid; |
| 135 base::win::ScopedComPtr<IObjectWithSite> factory; |
| 136 HRESULT hr = ::CLSIDFromString(guids[i].c_str(), &clsid); |
| 137 if (SUCCEEDED(hr)) { |
| 138 hr = factory.CreateInstance(clsid); |
| 139 if (SUCCEEDED(hr)) { |
| 140 nested_bho_.push_back(factory); |
| 141 } else { |
| 142 LOG(ERROR) << "Failed to load " << guids[i] << " " << com::LogWe(hr); |
| 143 } |
| 144 } else { |
| 145 LOG(ERROR) << "Invalid CLSID " << guids[i] << " " << com::LogWe(hr); |
| 146 } |
| 147 } |
| 148 } |
| 149 |
123 return S_OK; | 150 return S_OK; |
124 } | 151 } |
125 | 152 |
126 void BrowserHelperObject::FinalRelease() { | 153 void BrowserHelperObject::FinalRelease() { |
127 // Need to disconnect outside of destructor, because we use a virtual method | 154 // Need to disconnect outside of destructor, because we use a virtual method |
128 // for unit testing. | 155 // for unit testing. |
129 broker_rpc().Disconnect(); | 156 broker_rpc().Disconnect(); |
130 web_browser_.Release(); | 157 web_browser_.Release(); |
| 158 nested_bho_.clear(); |
131 } | 159 } |
132 | 160 |
133 void BrowserHelperObject::ReportAddonTimes(const char* name, | 161 void BrowserHelperObject::ReportAddonTimes(const char* name, |
134 const CLSID& clsid) { | 162 const CLSID& clsid) { |
135 ReportSingleAddonTime(name, clsid, "LoadTime"); | 163 ReportSingleAddonTime(name, clsid, "LoadTime"); |
136 ReportSingleAddonTime(name, clsid, "NavTime"); | 164 ReportSingleAddonTime(name, clsid, "NavTime"); |
137 } | 165 } |
138 | 166 |
139 void BrowserHelperObject::ReportSingleAddonTime(const char* name, | 167 void BrowserHelperObject::ReportSingleAddonTime(const char* name, |
140 const CLSID& clsid, | 168 const CLSID& clsid, |
(...skipping 17 matching lines...) Expand all Loading... |
158 break; | 186 break; |
159 default: | 187 default: |
160 counter_name += 'x'; | 188 counter_name += 'x'; |
161 break; | 189 break; |
162 } | 190 } |
163 VLOG(1) << counter_name << "=" << time; | 191 VLOG(1) << counter_name << "=" << time; |
164 broker_rpc().SendUmaHistogramTimes(counter_name.c_str(), time); | 192 broker_rpc().SendUmaHistogramTimes(counter_name.c_str(), time); |
165 } | 193 } |
166 | 194 |
167 STDMETHODIMP BrowserHelperObject::SetSite(IUnknown* site) { | 195 STDMETHODIMP BrowserHelperObject::SetSite(IUnknown* site) { |
168 typedef IObjectWithSiteImpl<BrowserHelperObject> SuperSite; | 196 for (size_t i = 0; i < nested_bho_.size(); ++i) { |
| 197 HRESULT hr = nested_bho_[i]->SetSite(site); |
| 198 LOG_IF(ERROR, FAILED(hr)) << "Failed to set site of nested BHO" << |
| 199 com::LogWe(hr); |
| 200 } |
169 | 201 |
170 // From experience, we know the site may be set multiple times. | 202 // From experience, we know the site may be set multiple times. |
171 // Let's ignore second and subsequent set or unset. | 203 // Let's ignore second and subsequent set or unset. |
172 if (site != NULL && m_spUnkSite.p != NULL || | 204 if (site != NULL && m_spUnkSite.p != NULL || |
173 site == NULL && m_spUnkSite.p == NULL ) { | 205 site == NULL && m_spUnkSite.p == NULL ) { |
174 LOG(WARNING) << "Duplicate call to SetSite, previous site " | 206 LOG(WARNING) << "Duplicate call to SetSite, previous site " |
175 << m_spUnkSite.p << " new site " << site; | 207 << m_spUnkSite.p << " new site " << site; |
176 return S_OK; | 208 return S_OK; |
177 } | 209 } |
178 | 210 |
179 if (NULL == site) { | 211 if (NULL == site) { |
180 mu::ScopedTimer metrics_timer("ceee/BHO.TearDown", &broker_rpc()); | 212 mu::ScopedTimer metrics_timer("ceee/BHO.TearDown", &broker_rpc()); |
181 | 213 |
182 // TODO(vitalybuka@chromium.org): switch to sampling when we have enough | 214 // TODO(vitalybuka@chromium.org): switch to sampling when we have enough |
183 // users. | 215 // users. |
184 ReportAddonTimes("BHO", CLSID_BrowserHelperObject); | 216 ReportAddonTimes("BHO", CLSID_BrowserHelperObject); |
185 ReportAddonTimes("ChromeFrameBHO", CLSID_ChromeFrameBHO); | 217 ReportAddonTimes("ChromeFrameBHO", CLSID_ChromeFrameBHO); |
186 ReportAddonTimes("Toolband", CLSID_ToolBand); | 218 ReportAddonTimes("Toolband", CLSID_ToolBand); |
187 | 219 |
188 // We're being torn down. | 220 // We're being torn down. |
189 TearDown(); | 221 TearDown(); |
190 | 222 |
191 FireOnRemovedEvent(); | 223 FireOnRemovedEvent(); |
192 // This call should be the last thing we send to the broker. | 224 // This call should be the last thing we send to the broker. |
193 FireOnUnmappedEvent(); | 225 FireOnUnmappedEvent(); |
194 } | 226 } |
195 | 227 |
| 228 typedef IObjectWithSiteImpl<BrowserHelperObject> SuperSite; |
196 HRESULT hr = SuperSite::SetSite(site); | 229 HRESULT hr = SuperSite::SetSite(site); |
197 if (FAILED(hr)) | 230 if (FAILED(hr)) |
198 return hr; | 231 return hr; |
199 | 232 |
200 if (NULL != site) { | 233 if (NULL != site) { |
201 // We're being initialized. | 234 // We're being initialized. |
202 hr = Initialize(site); | 235 hr = Initialize(site); |
203 | 236 |
204 // Release the site, and tear down our own state in case of failure. | 237 // Release the site, and tear down our own state in case of failure. |
205 if (FAILED(hr)) { | 238 if (FAILED(hr)) { |
(...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1634 return S_FALSE; | 1667 return S_FALSE; |
1635 } else { | 1668 } else { |
1636 return SendEventToBrokerImpl(event_name, event_args); | 1669 return SendEventToBrokerImpl(event_name, event_args); |
1637 } | 1670 } |
1638 } | 1671 } |
1639 | 1672 |
1640 HRESULT BrowserHelperObject::SendEventToBrokerImpl( | 1673 HRESULT BrowserHelperObject::SendEventToBrokerImpl( |
1641 const std::string& event_name, const std::string& event_args) { | 1674 const std::string& event_name, const std::string& event_args) { |
1642 return broker_rpc().FireEvent(event_name.c_str(), event_args.c_str()); | 1675 return broker_rpc().FireEvent(event_name.c_str(), event_args.c_str()); |
1643 } | 1676 } |
OLD | NEW |