Index: chrome_frame/chrome_active_document.cc |
=================================================================== |
--- chrome_frame/chrome_active_document.cc (revision 75663) |
+++ chrome_frame/chrome_active_document.cc (working copy) |
@@ -246,8 +246,8 @@ |
ScopedComPtr<BindContextInfo> info; |
BindContextInfo::FromBindContext(bind_context, info.Receive()); |
DCHECK(info); |
- if (info && !info->url().empty()) { |
- url = info->url(); |
+ if (info && !info->GetUrl().empty()) { |
+ url = info->GetUrl(); |
} else { |
// If the original URL contains an anchor, then the URL queried |
// from the moniker does not contain the anchor. To workaround |