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 #include "chrome_frame/urlmon_moniker.h" | 5 #include "chrome_frame/urlmon_moniker.h" |
6 | 6 |
7 #include <exdisp.h> | 7 #include <exdisp.h> |
8 #include <shlguid.h> | 8 #include <shlguid.h> |
9 | 9 |
10 #include "base/string_util.h" | 10 #include "base/strings/string_util.h" |
11 #include "base/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
13 #include "chrome_frame/bho.h" | 13 #include "chrome_frame/bho.h" |
14 #include "chrome_frame/bind_context_info.h" | 14 #include "chrome_frame/bind_context_info.h" |
15 #include "chrome_frame/chrome_active_document.h" | 15 #include "chrome_frame/chrome_active_document.h" |
16 #include "chrome_frame/exception_barrier.h" | 16 #include "chrome_frame/exception_barrier.h" |
17 #include "chrome_frame/urlmon_bind_status_callback.h" | 17 #include "chrome_frame/urlmon_bind_status_callback.h" |
18 #include "chrome_frame/utils.h" | 18 #include "chrome_frame/utils.h" |
19 #include "chrome_frame/vtable_patch_manager.h" | 19 #include "chrome_frame/vtable_patch_manager.h" |
20 #include "net/http/http_util.h" | 20 #include "net/http/http_util.h" |
21 | 21 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 | 253 |
254 // If the binding terminates before the data could be played back | 254 // If the binding terminates before the data could be played back |
255 // now is the chance. Sometimes OnStopBinding happens after this returns | 255 // now is the chance. Sometimes OnStopBinding happens after this returns |
256 // and then it's too late. | 256 // and then it's too late. |
257 if ((S_OK == hr) && callback) | 257 if ((S_OK == hr) && callback) |
258 callback->MayPlayBack(BSCF_LASTDATANOTIFICATION); | 258 callback->MayPlayBack(BSCF_LASTDATANOTIFICATION); |
259 | 259 |
260 return hr; | 260 return hr; |
261 } | 261 } |
262 | 262 |
OLD | NEW |