OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" | 21 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" |
22 #include "components/proxy_config/proxy_config_pref_names.h" | 22 #include "components/proxy_config/proxy_config_pref_names.h" |
23 #include "components/variations/variations_associated_data.h" | 23 #include "components/variations/variations_associated_data.h" |
24 #include "content/public/browser/browser_thread.h" | 24 #include "content/public/browser/browser_thread.h" |
25 #include "content/public/test/test_browser_thread_bundle.h" | 25 #include "content/public/test/test_browser_thread_bundle.h" |
26 #include "net/cert_net/nss_ocsp.h" | 26 #include "net/cert_net/nss_ocsp.h" |
27 #include "net/http/http_auth_preferences.h" | 27 #include "net/http/http_auth_preferences.h" |
28 #include "net/http/http_auth_scheme.h" | 28 #include "net/http/http_auth_scheme.h" |
29 #include "net/http/http_network_session.h" | 29 #include "net/http/http_network_session.h" |
30 #include "net/quic/chromium/quic_stream_factory.h" | 30 #include "net/quic/chromium/quic_stream_factory.h" |
31 #include "net/quic/quic_protocol.h" | 31 #include "net/quic/core/quic_protocol.h" |
32 #include "testing/gmock/include/gmock/gmock.h" | 32 #include "testing/gmock/include/gmock/gmock.h" |
33 #include "testing/gtest/include/gtest/gtest.h" | 33 #include "testing/gtest/include/gtest/gtest.h" |
34 | 34 |
35 #if defined(ENABLE_EXTENSIONS) | 35 #if defined(ENABLE_EXTENSIONS) |
36 #include "chrome/browser/extensions/event_router_forwarder.h" | 36 #include "chrome/browser/extensions/event_router_forwarder.h" |
37 #endif | 37 #endif |
38 | 38 |
39 #if defined(OS_CHROMEOS) | 39 #if defined(OS_CHROMEOS) |
40 #include "chromeos/dbus/dbus_thread_manager.h" | 40 #include "chromeos/dbus/dbus_thread_manager.h" |
41 #include "chromeos/network/network_handler.h" | 41 #include "chromeos/network/network_handler.h" |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 &IOThreadTestWithIOThreadObject::CheckAuthAndroidNegoitateAccountType, | 232 &IOThreadTestWithIOThreadObject::CheckAuthAndroidNegoitateAccountType, |
233 base::Unretained(this), "acc1")); | 233 base::Unretained(this), "acc1")); |
234 pref_service()->SetString(prefs::kAuthAndroidNegotiateAccountType, "acc2"); | 234 pref_service()->SetString(prefs::kAuthAndroidNegotiateAccountType, "acc2"); |
235 RunOnIOThreadBlocking(base::Bind( | 235 RunOnIOThreadBlocking(base::Bind( |
236 &IOThreadTestWithIOThreadObject::CheckAuthAndroidNegoitateAccountType, | 236 &IOThreadTestWithIOThreadObject::CheckAuthAndroidNegoitateAccountType, |
237 base::Unretained(this), "acc2")); | 237 base::Unretained(this), "acc2")); |
238 } | 238 } |
239 #endif | 239 #endif |
240 | 240 |
241 } // namespace test | 241 } // namespace test |
OLD | NEW |