Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(600)

Side by Side Diff: chrome/browser/chromeos/cros/mock_cryptohome_library.h

Issue 10817007: Remove chromeos::CryptohomeLibrary::IsMounted and convert (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 CHROME_BROWSER_CHROMEOS_CROS_MOCK_CRYPTOHOME_LIBRARY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_MOCK_CRYPTOHOME_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_MOCK_CRYPTOHOME_LIBRARY_H_ 6 #define CHROME_BROWSER_CHROMEOS_CROS_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 "chrome/browser/chromeos/cros/cryptohome_library.h" 11 #include "chrome/browser/chromeos/cros/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 {
21 public: 21 public:
22 MockCryptohomeLibrary(); 22 MockCryptohomeLibrary();
23 virtual ~MockCryptohomeLibrary(); 23 virtual ~MockCryptohomeLibrary();
24 MOCK_METHOD0(IsMounted, bool(void));
25 MOCK_METHOD0(GetSystemSalt, std::string(void)); 24 MOCK_METHOD0(GetSystemSalt, std::string(void));
26 25
27 MOCK_METHOD0(TpmIsReady, bool(void)); 26 MOCK_METHOD0(TpmIsReady, bool(void));
28 MOCK_METHOD0(TpmIsEnabled, bool(void)); 27 MOCK_METHOD0(TpmIsEnabled, bool(void));
29 MOCK_METHOD0(TpmIsOwned, bool(void)); 28 MOCK_METHOD0(TpmIsOwned, bool(void));
30 MOCK_METHOD0(TpmIsBeingOwned, bool(void)); 29 MOCK_METHOD0(TpmIsBeingOwned, bool(void));
31 MOCK_METHOD1(TpmGetPassword, bool(std::string* password)); 30 MOCK_METHOD1(TpmGetPassword, bool(std::string* password));
32 MOCK_METHOD0(TpmCanAttemptOwnership, void(void)); 31 MOCK_METHOD0(TpmCanAttemptOwnership, void(void));
33 MOCK_METHOD0(TpmClearStoredPassword, void(void)); 32 MOCK_METHOD0(TpmClearStoredPassword, void(void));
34 33
35 MOCK_METHOD2(InstallAttributesGet, bool(const std::string&, std::string*)); 34 MOCK_METHOD2(InstallAttributesGet, bool(const std::string&, std::string*));
36 MOCK_METHOD2(InstallAttributesSet, bool(const std::string&, 35 MOCK_METHOD2(InstallAttributesSet, bool(const std::string&,
37 const std::string&)); 36 const std::string&));
38 MOCK_METHOD0(InstallAttributesFinalize, bool(void)); 37 MOCK_METHOD0(InstallAttributesFinalize, bool(void));
39 MOCK_METHOD0(InstallAttributesIsReady, bool(void)); 38 MOCK_METHOD0(InstallAttributesIsReady, bool(void));
40 MOCK_METHOD0(InstallAttributesIsInvalid, bool(void)); 39 MOCK_METHOD0(InstallAttributesIsInvalid, bool(void));
41 MOCK_METHOD0(InstallAttributesIsFirstInstall, bool(void)); 40 MOCK_METHOD0(InstallAttributesIsFirstInstall, bool(void));
42 private: 41 private:
43 DISALLOW_COPY_AND_ASSIGN(MockCryptohomeLibrary); 42 DISALLOW_COPY_AND_ASSIGN(MockCryptohomeLibrary);
44 }; 43 };
45 44
46 } // namespace chromeos 45 } // namespace chromeos
47 46
48 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_CRYPTOHOME_LIBRARY_H_ 47 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_CRYPTOHOME_LIBRARY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698