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

Side by Side Diff: chrome/browser/net/chrome_url_request_context.cc

Issue 6532069: Reland "WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/net/chrome_url_request_context.h" 5 #include "chrome/browser/net/chrome_url_request_context.h"
6 6
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "base/message_loop_proxy.h" 8 #include "base/message_loop_proxy.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/browser_thread.h" 10 #include "chrome/browser/browser_thread.h"
11 #include "chrome/browser/dom_ui/chrome_url_data_manager_backend.h"
12 #include "chrome/browser/io_thread.h" 11 #include "chrome/browser/io_thread.h"
13 #include "chrome/browser/net/chrome_cookie_policy.h" 12 #include "chrome/browser/net/chrome_cookie_policy.h"
14 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/profiles/profile_io_data.h" 14 #include "chrome/browser/profiles/profile_io_data.h"
15 #include "chrome/browser/webui/chrome_url_data_manager_backend.h"
16 #include "chrome/common/notification_service.h" 16 #include "chrome/common/notification_service.h"
17 #include "chrome/common/pref_names.h" 17 #include "chrome/common/pref_names.h"
18 #include "net/base/cookie_store.h" 18 #include "net/base/cookie_store.h"
19 #include "net/ftp/ftp_transaction_factory.h" 19 #include "net/ftp/ftp_transaction_factory.h"
20 #include "net/http/http_transaction_factory.h" 20 #include "net/http/http_transaction_factory.h"
21 #include "net/http/http_util.h" 21 #include "net/http/http_util.h"
22 #include "webkit/glue/webkit_glue.h" 22 #include "webkit/glue/webkit_glue.h"
23 23
24 #if defined(USE_NSS) 24 #if defined(USE_NSS)
25 #include "net/ocsp/nss_ocsp.h" 25 #include "net/ocsp/nss_ocsp.h"
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 net::HttpUtil::GenerateAcceptLanguageHeader(accept_language)); 377 net::HttpUtil::GenerateAcceptLanguageHeader(accept_language));
378 } 378 }
379 379
380 void ChromeURLRequestContext::OnDefaultCharsetChange( 380 void ChromeURLRequestContext::OnDefaultCharsetChange(
381 const std::string& default_charset) { 381 const std::string& default_charset) {
382 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); 382 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
383 set_referrer_charset(default_charset); 383 set_referrer_charset(default_charset);
384 set_accept_charset( 384 set_accept_charset(
385 net::HttpUtil::GenerateAcceptCharsetHeader(default_charset)); 385 net::HttpUtil::GenerateAcceptCharsetHeader(default_charset));
386 } 386 }
OLDNEW
« no previous file with comments | « chrome/browser/modal_html_dialog_delegate.h ('k') | chrome/browser/printing/cloud_print/cloud_print_setup_flow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698