Index: chrome_frame/bind_context_info.cc |
=================================================================== |
--- chrome_frame/bind_context_info.cc (revision 75628) |
+++ chrome_frame/bind_context_info.cc (working copy) |
@@ -79,3 +79,11 @@ |
} |
} |
+std::wstring BindContextInfo::GetUrl() { |
+ if (has_prot_data()) { |
+ scoped_refptr<ProtData> prot_data = get_prot_data(); |
amit
2011/02/22 23:12:05
nit: this can simply be return prot_data_->url(),
ananta
2011/02/22 23:15:49
Done.
|
+ return prot_data->url(); |
+ } |
+ return std::wstring(); |
+} |
+ |