summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPS2
-rw-r--r--webkit/glue/resource_handle_impl.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/DEPS b/DEPS
index 37fb90e..223bedd 100644
--- a/DEPS
+++ b/DEPS
@@ -1,7 +1,7 @@
vars = {
"webkit_trunk":
"http://svn.webkit.org/repository/webkit/trunk",
- "webkit_revision": "44039",
+ "webkit_revision": "44049",
}
diff --git a/webkit/glue/resource_handle_impl.cc b/webkit/glue/resource_handle_impl.cc
index 024836e..50541cb 100644
--- a/webkit/glue/resource_handle_impl.cc
+++ b/webkit/glue/resource_handle_impl.cc
@@ -412,9 +412,9 @@ bool ResourceHandleInternal::Start(
// TODO(abarth): These are wrong! I need to figure out how to get the right
// strings here. See: http://crbug.com/8706
std::string frame_origin =
- webkit_glue::StringToStdString(request_.mainDocumentURL().string());
+ webkit_glue::StringToStdString(request_.firstPartyForCookies().string());
std::string main_frame_origin =
- webkit_glue::StringToStdString(request_.mainDocumentURL().string());
+ webkit_glue::StringToStdString(request_.firstPartyForCookies().string());
// TODO(darin): is latin1 really correct here? It is if the strings are
// already ASCII (i.e., if they are already escaped properly).