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

Side by Side Diff: chrome/browser/io_thread.cc

Issue 444903002: [cros] user_manager component - move UserManagerBase and UserManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: similarity Created 6 years, 4 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/io_thread.h" 5 #include "chrome/browser/io_thread.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 #endif 97 #endif
98 98
99 #if defined(SPDY_PROXY_AUTH_ORIGIN) 99 #if defined(SPDY_PROXY_AUTH_ORIGIN)
100 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h" 100 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h"
101 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact ory.h" 101 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact ory.h"
102 #include "components/data_reduction_proxy/browser/data_reduction_proxy_auth_requ est_handler.h" 102 #include "components/data_reduction_proxy/browser/data_reduction_proxy_auth_requ est_handler.h"
103 #include "components/data_reduction_proxy/browser/data_reduction_proxy_protocol. h" 103 #include "components/data_reduction_proxy/browser/data_reduction_proxy_protocol. h"
104 #endif // defined(SPDY_PROXY_AUTH_ORIGIN) 104 #endif // defined(SPDY_PROXY_AUTH_ORIGIN)
105 105
106 #if defined(OS_CHROMEOS) 106 #if defined(OS_CHROMEOS)
107 #include "chrome/browser/chromeos/login/users/user_manager.h"
108 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" 107 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h"
109 #include "chromeos/network/host_resolver_impl_chromeos.h" 108 #include "chromeos/network/host_resolver_impl_chromeos.h"
109 #include "components/user_manager/user_manager.h"
110 #endif 110 #endif
111 111
112 using content::BrowserThread; 112 using content::BrowserThread;
113 113
114 class SafeBrowsingURLRequestContext; 114 class SafeBrowsingURLRequestContext;
115 115
116 // The IOThread object must outlive any tasks posted to the IO thread before the 116 // The IOThread object must outlive any tasks posted to the IO thread before the
117 // Quit task, so base::Bind() calls are not refcounted. 117 // Quit task, so base::Bind() calls are not refcounted.
118 118
119 namespace { 119 namespace {
(...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 net::QuicVersionVector supported_versions = net::QuicSupportedVersions(); 1389 net::QuicVersionVector supported_versions = net::QuicSupportedVersions();
1390 for (size_t i = 0; i < supported_versions.size(); ++i) { 1390 for (size_t i = 0; i < supported_versions.size(); ++i) {
1391 net::QuicVersion version = supported_versions[i]; 1391 net::QuicVersion version = supported_versions[i];
1392 if (net::QuicVersionToString(version) == quic_version) { 1392 if (net::QuicVersionToString(version) == quic_version) {
1393 return version; 1393 return version;
1394 } 1394 }
1395 } 1395 }
1396 1396
1397 return net::QUIC_VERSION_UNSUPPORTED; 1397 return net::QUIC_VERSION_UNSUPPORTED;
1398 } 1398 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698