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

Unified Diff: net/url_request/redirect_info.cc

Issue 398903002: Plumb redirect info out of net, through content, and into child processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a TODO Created 6 years, 5 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: net/url_request/redirect_info.cc
diff --git a/net/url_request/url_request_interceptor.cc b/net/url_request/redirect_info.cc
similarity index 56%
copy from net/url_request/url_request_interceptor.cc
copy to net/url_request/redirect_info.cc
index bcd0fd5ceeeb8621068f3f44d9516458e20a32f4..16b517a994bba2f661260f6727b96ba5a2874c7f 100644
--- a/net/url_request/url_request_interceptor.cc
+++ b/net/url_request/redirect_info.cc
@@ -2,14 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "net/url_request/url_request_interceptor.h"
+#include "net/url_request/redirect_info.h"
namespace net {
-URLRequestInterceptor::URLRequestInterceptor() {
-}
+RedirectInfo::RedirectInfo() : status_code(-1) {}
-URLRequestInterceptor::~URLRequestInterceptor() {
-}
+RedirectInfo::~RedirectInfo() {}
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698