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

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

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: Rebase again. Created 3 years, 9 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 97aeb25898dc6db10eea98b0d2bc8dc404ba0861..8e68e7c0c552391803e5e859661d4c4bc4dbcfe5 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;
}
« no previous file with comments | « third_party/WebKit/Source/core/loader/HistoryItem.h ('k') | third_party/WebKit/Source/core/page/FrameTree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698