| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_MANAGER_TEST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_MANAGER_TEST_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_MANAGER_TEST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_MANAGER_TEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "chrome/browser/chromeos/login/mixin_based_browser_test.h" | 11 #include "chrome/browser/chromeos/login/mixin_based_browser_test.h" |
| 11 #include "chrome/browser/chromeos/login/test/https_forwarder.h" | 12 #include "chrome/browser/chromeos/login/test/https_forwarder.h" |
| 12 #include "chrome/browser/chromeos/login/test/js_checker.h" | 13 #include "chrome/browser/chromeos/login/test/js_checker.h" |
| 13 #include "google_apis/gaia/fake_gaia.h" | 14 #include "google_apis/gaia/fake_gaia.h" |
| 14 | 15 |
| 15 namespace content { | 16 namespace content { |
| 16 class WebContents; | 17 class WebContents; |
| 17 } // namespace content | 18 } // namespace content |
| 18 | 19 |
| 19 namespace chromeos { | 20 namespace chromeos { |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 bool should_launch_browser_; | 98 bool should_launch_browser_; |
| 98 content::WebContents* web_contents_; | 99 content::WebContents* web_contents_; |
| 99 test::JSChecker js_checker_; | 100 test::JSChecker js_checker_; |
| 100 | 101 |
| 101 DISALLOW_COPY_AND_ASSIGN(LoginManagerTest); | 102 DISALLOW_COPY_AND_ASSIGN(LoginManagerTest); |
| 102 }; | 103 }; |
| 103 | 104 |
| 104 } // namespace chromeos | 105 } // namespace chromeos |
| 105 | 106 |
| 106 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_MANAGER_TEST_H_ | 107 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_MANAGER_TEST_H_ |
| OLD | NEW |