summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 17:08:14 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 17:08:14 +0000
commitac48694e5fac3a7c18d82155ae62f55f9af656f2 (patch)
treea9958919ae28c7074e797b8514a44ad059eb15ef /webkit/glue
parent04d3c6e85f3aabc08a1d72a72d8c3a82fab65dda (diff)
downloadchromium_src-ac48694e5fac3a7c18d82155ae62f55f9af656f2.zip
chromium_src-ac48694e5fac3a7c18d82155ae62f55f9af656f2.tar.gz
chromium_src-ac48694e5fac3a7c18d82155ae62f55f9af656f2.tar.bz2
Fix future build break from upstream renaming patch.
R=wtc BUG=None TEST=It compiles! It must work. Review URL: http://codereview.chromium.org/115702 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/resource_handle_impl.cc4
1 files changed, 2 insertions, 2 deletions
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).