Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6682)

Unified Diff: chrome_frame/bind_context_info.cc

Issue 6469103: If we switch into ChromeFrame as a result of a redirect then we need to navig... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
+}
+

Powered by Google App Engine
This is Rietveld 408576698