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

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

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.h
diff --git a/third_party/WebKit/Source/core/loader/HistoryItem.h b/third_party/WebKit/Source/core/loader/HistoryItem.h
index e8e2f402e0f22f66bfefe7da12b12d3498f82044..453643daafb7282f5511a7564a6e95c963460a85 100644
--- a/third_party/WebKit/Source/core/loader/HistoryItem.h
+++ b/third_party/WebKit/Source/core/loader/HistoryItem.h
@@ -55,7 +55,6 @@ class CORE_EXPORT HistoryItem final
KURL url() const;
const Referrer& referrer() const;
- const String& target() const;
EncodedFormData* formData();
const AtomicString& formContentType() const;
@@ -83,7 +82,6 @@ class CORE_EXPORT HistoryItem final
void setURL(const KURL&);
void setURLString(const String&);
void setReferrer(const Referrer&);
- void setTarget(const String&);
void setStateObject(PassRefPtr<SerializedScriptValue>);
SerializedScriptValue* stateObject() const { return m_stateObject.get(); }
@@ -118,7 +116,6 @@ class CORE_EXPORT HistoryItem final
String m_urlString;
Referrer m_referrer;
- String m_target;
bool m_didSaveScrollOrScaleState;
ScrollOffset m_visualViewportScrollOffset;

Powered by Google App Engine
This is Rietveld 408576698