Chromium Code Reviews| 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 #ifndef CHROMEOS_CRYPTOHOME_MOCK_CRYPTOHOME_LIBRARY_H_ | 5 #ifndef CHROMEOS_CRYPTOHOME_MOCK_CRYPTOHOME_LIBRARY_H_ |
| 6 #define CHROMEOS_CRYPTOHOME_MOCK_CRYPTOHOME_LIBRARY_H_ | 6 #define CHROMEOS_CRYPTOHOME_MOCK_CRYPTOHOME_LIBRARY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "chromeos/cryptohome/cryptohome_library.h" | 11 #include "chromeos/cryptohome/cryptohome_library.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
| 13 | 13 |
| 14 using ::testing::Invoke; | 14 using ::testing::Invoke; |
| 15 using ::testing::WithArgs; | 15 using ::testing::WithArgs; |
| 16 using ::testing::_; | 16 using ::testing::_; |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 | 19 |
| 20 class MockCryptohomeLibrary : public CryptohomeLibrary { | 20 class MockCryptohomeLibrary : public CryptohomeLibrary { |
|
satorux1
2013/10/04 06:23:01
Just noticed that this class is no longer in use n
| |
| 21 public: | 21 public: |
| 22 MockCryptohomeLibrary(); | 22 MockCryptohomeLibrary(); |
| 23 virtual ~MockCryptohomeLibrary(); | 23 virtual ~MockCryptohomeLibrary(); |
| 24 MOCK_METHOD0(GetSystemSalt, std::string(void)); | 24 MOCK_METHOD0(GetSystemSalt, std::string(void)); |
| 25 | 25 |
| 26 MOCK_METHOD1(EncryptWithSystemSalt, std::string(const std::string&)); | |
| 27 MOCK_METHOD1(DecryptWithSystemSalt, std::string(const std::string&)); | |
| 28 | |
| 29 private: | 26 private: |
| 30 DISALLOW_COPY_AND_ASSIGN(MockCryptohomeLibrary); | 27 DISALLOW_COPY_AND_ASSIGN(MockCryptohomeLibrary); |
| 31 }; | 28 }; |
| 32 | 29 |
| 33 } // namespace chromeos | 30 } // namespace chromeos |
| 34 | 31 |
| 35 #endif // CHROMEOS_CRYPTOHOME_MOCK_CRYPTOHOME_LIBRARY_H_ | 32 #endif // CHROMEOS_CRYPTOHOME_MOCK_CRYPTOHOME_LIBRARY_H_ |
| OLD | NEW |