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

Unified Diff: chrome/browser/url_fetcher.cc

Issue 14466: Platform cleanup in browser/ and porting of few files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 12 years 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
« no previous file with comments | « chrome/browser/ssl_error_info.cc ('k') | chrome/browser/url_fixer_upper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/url_fetcher.cc
===================================================================
--- chrome/browser/url_fetcher.cc (revision 7139)
+++ chrome/browser/url_fetcher.cc (working copy)
@@ -4,19 +4,19 @@
#include "chrome/browser/url_fetcher.h"
+#include "base/compiler_specific.h"
#include "base/string_util.h"
#include "base/thread.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_thread.h"
-#include "chrome/browser/net/dns_master.h"
#include "googleurl/src/gurl.h"
#include "net/base/load_flags.h"
URLFetcher::URLFetcher(const GURL& url,
RequestType request_type,
Delegate* d)
-#pragma warning(suppress: 4355) // Okay to pass "this" here.
- : core_(new Core(this, url, request_type, d)) {
+ : ALLOW_THIS_IN_INITIALIZER_LIST(
+ core_(new Core(this, url, request_type, d))) {
}
URLFetcher::~URLFetcher() {
@@ -34,8 +34,8 @@
delegate_loop_(MessageLoop::current()),
io_loop_(ChromeThread::GetMessageLoop(ChromeThread::IO)),
request_(NULL),
+ load_flags_(net::LOAD_NORMAL),
response_code_(-1),
- load_flags_(net::LOAD_NORMAL),
protect_entry_(URLFetcherProtectManager::GetInstance()->Register(
original_url_.host())),
num_retries_(0) {
« no previous file with comments | « chrome/browser/ssl_error_info.cc ('k') | chrome/browser/url_fixer_upper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698