| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_CROS_CROS_MOCK_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_CROS_MOCK_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CROS_CROS_MOCK_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CROS_CROS_MOCK_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/chromeos/cros/cros_library.h" | 8 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 9 #include "chrome/browser/chromeos/cros/network_library.h" | 9 #include "chrome/browser/chromeos/cros/network_library.h" |
| 10 #include "chrome/test/in_process_browser_test.h" | 10 #include "chrome/test/in_process_browser_test.h" |
| 11 #include "cros/chromeos_input_method.h" | 11 #include "third_party/cros/chromeos_input_method.h" |
| 12 | 12 |
| 13 namespace chromeos { | 13 namespace chromeos { |
| 14 | 14 |
| 15 class MockCryptohomeLibrary; | 15 class MockCryptohomeLibrary; |
| 16 class MockKeyboardLibrary; | 16 class MockKeyboardLibrary; |
| 17 class MockInputMethodLibrary; | 17 class MockInputMethodLibrary; |
| 18 class MockLibraryLoader; | 18 class MockLibraryLoader; |
| 19 class MockNetworkLibrary; | 19 class MockNetworkLibrary; |
| 20 class MockPowerLibrary; | 20 class MockPowerLibrary; |
| 21 class MockScreenLockLibrary; | 21 class MockScreenLockLibrary; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 CellularNetwork cellular_network_; | 108 CellularNetwork cellular_network_; |
| 109 CellularNetworkVector cellular_networks_; | 109 CellularNetworkVector cellular_networks_; |
| 110 std::string empty_string_; | 110 std::string empty_string_; |
| 111 | 111 |
| 112 DISALLOW_COPY_AND_ASSIGN(CrosMock); | 112 DISALLOW_COPY_AND_ASSIGN(CrosMock); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace chromeos | 115 } // namespace chromeos |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_CHROMEOS_CROS_CROS_MOCK_H_ | 117 #endif // CHROME_BROWSER_CHROMEOS_CROS_CROS_MOCK_H_ |
| OLD | NEW |