diff options
author | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-24 16:11:31 +0000 |
---|---|---|
committer | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-24 16:11:31 +0000 |
commit | 932ae79a3b85708c8889b9c37c18cb3403cfae1b (patch) | |
tree | 4d8dff223179c7b24c8a1a9e311b37548d44e909 /chrome/browser/chromeos/cros/cros_library.h | |
parent | 231274fcb382c876c9f3654dacdbd00d3c9b1df7 (diff) | |
download | chromium_src-932ae79a3b85708c8889b9c37c18cb3403cfae1b.zip chromium_src-932ae79a3b85708c8889b9c37c18cb3403cfae1b.tar.gz chromium_src-932ae79a3b85708c8889b9c37c18cb3403cfae1b.tar.bz2 |
Move cryptohome_library to src/chromeos
This CL does the following:
1. Move [De|En]cryptWithSystemSalt to CryptohomeLibrary
2. Remove CryptohomeLibrary from CrosLibrary
3. Move CryptohomeLibrary to src/chromeos
BUG=233724
For chrome_browser_chromeos.gypi
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/14179007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196159 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/cros/cros_library.h')
-rw-r--r-- | chrome/browser/chromeos/cros/cros_library.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/browser/chromeos/cros/cros_library.h b/chrome/browser/chromeos/cros/cros_library.h index c5e8de5..1ca9b56 100644 --- a/chrome/browser/chromeos/cros/cros_library.h +++ b/chrome/browser/chromeos/cros/cros_library.h @@ -16,7 +16,6 @@ template <typename T> struct DefaultLazyInstanceTraits; namespace chromeos { class CertLibrary; -class CryptohomeLibrary; class NetworkLibrary; // This class handles access to sub-parts of ChromeOS library. it provides @@ -32,7 +31,6 @@ class CrosLibrary { // Passing true for own for these setters will cause them to be deleted // when the CrosLibrary is deleted (or other mocks are set). void SetCertLibrary(CertLibrary* library, bool own); - void SetCryptohomeLibrary(CryptohomeLibrary* library, bool own); void SetNetworkLibrary(NetworkLibrary* library, bool own); private: @@ -53,7 +51,6 @@ class CrosLibrary { static CrosLibrary* Get(); CertLibrary* GetCertLibrary(); - CryptohomeLibrary* GetCryptohomeLibrary(); NetworkLibrary* GetNetworkLibrary(); // Getter for Test API that gives access to internal members of this class. @@ -106,7 +103,6 @@ class CrosLibrary { }; Library<CertLibrary> cert_lib_; - Library<CryptohomeLibrary> crypto_lib_; Library<NetworkLibrary> network_lib_; // Stub implementations of the libraries should be used. |