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

Unified Diff: third_party/WebKit/Source/core/loader/HistoryItem.cpp

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: . Created 3 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: third_party/WebKit/Source/core/loader/HistoryItem.cpp
diff --git a/third_party/WebKit/Source/core/loader/HistoryItem.cpp b/third_party/WebKit/Source/core/loader/HistoryItem.cpp
index 2978583d7b1377f7322d6312fde46a71462622f9..5656bf277241e312c0bb1230758084576e030d73 100644
--- a/third_party/WebKit/Source/core/loader/HistoryItem.cpp
+++ b/third_party/WebKit/Source/core/loader/HistoryItem.cpp
@@ -63,10 +63,6 @@ const Referrer& HistoryItem::referrer() const {
return m_referrer;
}
-const String& HistoryItem::target() const {
- return m_target;
-}
-
void HistoryItem::setURLString(const String& urlString) {
if (m_urlString != urlString)
m_urlString = urlString;
@@ -82,10 +78,6 @@ void HistoryItem::setReferrer(const Referrer& referrer) {
referrer.referrer);
}
-void HistoryItem::setTarget(const String& target) {
- m_target = target;
-}
-
const ScrollOffset& HistoryItem::visualViewportScrollOffset() const {
return m_visualViewportScrollOffset;
}

Powered by Google App Engine
This is Rietveld 408576698