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

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

Issue 2383403002: Reflow comments in core/loader (Closed)
Patch Set: yhirano comments Created 4 years, 2 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 47064fa779643e8c6719e46bbaa09d5607608a10..cefdb0612097589128db65592d701100aabcc2e7 100644
--- a/third_party/WebKit/Source/core/loader/HistoryItem.cpp
+++ b/third_party/WebKit/Source/core/loader/HistoryItem.cpp
@@ -143,8 +143,9 @@ const AtomicString& HistoryItem::formContentType() const {
void HistoryItem::setFormInfoFromRequest(const ResourceRequest& request) {
if (equalIgnoringCase(request.httpMethod(), "POST")) {
- // FIXME: Eventually we have to make this smart enough to handle the case where
- // we have a stream for the body to handle the "data interspersed with files" feature.
+ // FIXME: Eventually we have to make this smart enough to handle the case
+ // where we have a stream for the body to handle the "data interspersed with
+ // files" feature.
m_formData = request.httpBody();
m_formContentType = request.httpContentType();
} else {
@@ -166,7 +167,8 @@ EncodedFormData* HistoryItem::formData() {
}
bool HistoryItem::isCurrentDocument(Document* doc) const {
- // FIXME: We should find a better way to check if this is the current document.
+ // FIXME: We should find a better way to check if this is the current
+ // document.
return equalIgnoringFragmentIdentifier(url(), doc->url());
}
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoaderStateMachine.cpp ('k') | third_party/WebKit/Source/core/loader/HttpEquiv.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698