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

Side by Side Diff: chrome/browser/chromeos/login/profile_auth_data.cc

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/chromeos/login/profile_auth_data.h" 5 #include "chrome/browser/chromeos/login/profile_auth_data.h"
6 6
7 #include "chrome/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
9 #include "net/base/server_bound_cert_service.h"
10 #include "net/base/server_bound_cert_store.h"
11 #include "net/cookies/cookie_monster.h" 9 #include "net/cookies/cookie_monster.h"
12 #include "net/cookies/cookie_store.h" 10 #include "net/cookies/cookie_store.h"
13 #include "net/http/http_auth_cache.h" 11 #include "net/http/http_auth_cache.h"
14 #include "net/http/http_network_session.h" 12 #include "net/http/http_network_session.h"
15 #include "net/http/http_transaction_factory.h" 13 #include "net/http/http_transaction_factory.h"
14 #include "net/ssl/server_bound_cert_service.h"
15 #include "net/ssl/server_bound_cert_store.h"
16 #include "net/url_request/url_request_context.h" 16 #include "net/url_request/url_request_context.h"
17 #include "net/url_request/url_request_context_getter.h" 17 #include "net/url_request/url_request_context_getter.h"
18 18
19 using content::BrowserThread; 19 using content::BrowserThread;
20 20
21 namespace chromeos { 21 namespace chromeos {
22 22
23 namespace { 23 namespace {
24 24
25 class ProfileAuthDataTransferer { 25 class ProfileAuthDataTransferer {
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 Profile* from_profile, 214 Profile* from_profile,
215 Profile* to_profile, 215 Profile* to_profile,
216 bool transfer_cookies, 216 bool transfer_cookies,
217 const base::Closure& completion_callback) { 217 const base::Closure& completion_callback) {
218 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 218 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
219 (new ProfileAuthDataTransferer(from_profile, to_profile, transfer_cookies, 219 (new ProfileAuthDataTransferer(from_profile, to_profile, transfer_cookies,
220 completion_callback))->BeginTransfer(); 220 completion_callback))->BeginTransfer();
221 } 221 }
222 222
223 } // namespace chromeos 223 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/web_socket_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698