summaryrefslogtreecommitdiffstats
path: root/chrome_frame/utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/utils.cc')
-rw-r--r--chrome_frame/utils.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc
index 31cf389..26bab06 100644
--- a/chrome_frame/utils.cc
+++ b/chrome_frame/utils.cc
@@ -1355,6 +1355,13 @@ bool ChromeFrameUrl::ParseAttachExternalTabUrl() {
} else {
return false;
}
+
+ if (tokenizer.GetNext()) {
+ profile_name_ = tokenizer.token();
+ } else {
+ return false;
+ }
+
return true;
}
@@ -1364,6 +1371,7 @@ void ChromeFrameUrl::Reset() {
cookie_ = 0;
dimensions_.SetRect(0, 0, 0, 0);
disposition_ = 0;
+ profile_name_.clear();
}
bool CanNavigate(const GURL& url, IInternetSecurityManager* security_manager,