| OLD | NEW |
| 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/login_utils.h" | 5 #include "chrome/browser/chromeos/login/login_utils.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "chrome/common/chrome_paths.h" | 28 #include "chrome/common/chrome_paths.h" |
| 29 #include "chrome/common/chrome_switches.h" | 29 #include "chrome/common/chrome_switches.h" |
| 30 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | 30 #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
| 31 #include "chrome/common/net/gaia/gaia_urls.h" | 31 #include "chrome/common/net/gaia/gaia_urls.h" |
| 32 #include "chrome/common/pref_names.h" | 32 #include "chrome/common/pref_names.h" |
| 33 #include "chrome/test/base/testing_browser_process.h" | 33 #include "chrome/test/base/testing_browser_process.h" |
| 34 #include "chrome/test/base/testing_pref_service.h" | 34 #include "chrome/test/base/testing_pref_service.h" |
| 35 #include "chromeos/dbus/mock_dbus_thread_manager.h" | 35 #include "chromeos/dbus/mock_dbus_thread_manager.h" |
| 36 #include "chromeos/dbus/mock_session_manager_client.h" | 36 #include "chromeos/dbus/mock_session_manager_client.h" |
| 37 #include "content/public/browser/browser_thread.h" | 37 #include "content/public/browser/browser_thread.h" |
| 38 #include "content/public/common/url_fetcher_delegate.h" | |
| 39 #include "content/test/test_browser_thread.h" | 38 #include "content/test/test_browser_thread.h" |
| 40 #include "content/test/test_url_fetcher_factory.h" | 39 #include "content/test/test_url_fetcher_factory.h" |
| 40 #include "net/url_request/url_fetcher_delegate.h" |
| 41 #include "net/url_request/url_request.h" | 41 #include "net/url_request/url_request.h" |
| 42 #include "net/url_request/url_request_status.h" | 42 #include "net/url_request/url_request_status.h" |
| 43 #include "testing/gmock/include/gmock/gmock.h" | 43 #include "testing/gmock/include/gmock/gmock.h" |
| 44 #include "testing/gtest/include/gtest/gtest.h" | 44 #include "testing/gtest/include/gtest/gtest.h" |
| 45 | 45 |
| 46 namespace chromeos { | 46 namespace chromeos { |
| 47 | 47 |
| 48 namespace { | 48 namespace { |
| 49 | 49 |
| 50 namespace em = enterprise_management; | 50 namespace em = enterprise_management; |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 } | 527 } |
| 528 | 528 |
| 529 INSTANTIATE_TEST_CASE_P( | 529 INSTANTIATE_TEST_CASE_P( |
| 530 LoginUtilsBlockingLoginTestInstance, | 530 LoginUtilsBlockingLoginTestInstance, |
| 531 LoginUtilsBlockingLoginTest, | 531 LoginUtilsBlockingLoginTest, |
| 532 testing::Values(0, 1, 2, 3, 4, 5)); | 532 testing::Values(0, 1, 2, 3, 4, 5)); |
| 533 | 533 |
| 534 } // namespace | 534 } // namespace |
| 535 | 535 |
| 536 } | 536 } |
| OLD | NEW |