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

Unified Diff: webkit/glue/glue_serialize.cc

Issue 18733: Chrome side of webkit merge to r40164.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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
« no previous file with comments | « webkit/build/WebCore/WebCore.vcproj ('k') | webkit/glue/glue_serialize_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/glue_serialize.cc
===================================================================
--- webkit/glue/glue_serialize.cc (revision 8584)
+++ webkit/glue/glue_serialize.cc (working copy)
@@ -244,14 +244,14 @@
WriteInteger(item->scrollPoint().y(), obj);
WriteBoolean(item->isTargetItem(), obj);
WriteInteger(item->visitCount(), obj);
- WriteString(item->rssFeedReferrer(), obj);
+ WriteString(item->referrer(), obj);
WriteStringVector(item->documentState(), obj);
// No access to formData through a const HistoryItem = lame.
WriteFormData(const_cast<HistoryItem*>(item)->formData(), obj);
WriteString(item->formContentType(), obj);
- WriteString(item->formReferrer(), obj);
+ WriteString(item->referrer(), obj);
// Subitems
WriteInteger(static_cast<int>(item->children().size()), obj);
@@ -282,7 +282,7 @@
item->setScrollPoint(IntPoint(x, y));
item->setIsTargetItem(ReadBoolean(obj));
item->setVisitCount(ReadInteger(obj));
- item->setRSSFeedReferrer(ReadString(obj));
+ item->setReferrer(ReadString(obj));
Vector<String> document_state;
ReadStringVector(obj, &document_state);
« no previous file with comments | « webkit/build/WebCore/WebCore.vcproj ('k') | webkit/glue/glue_serialize_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698