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

Unified Diff: chrome/browser/chromeos/cros/cros_library.h

Issue 14179007: Move cryptohome_library to src/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/cros/cros_library.h
diff --git a/chrome/browser/chromeos/cros/cros_library.h b/chrome/browser/chromeos/cros/cros_library.h
index c5e8de568c2db7469b1b45fc91b5b8eb1ce3b056..1ca9b561d12b58c528cd8070bf040f0eade2539c 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.

Powered by Google App Engine
This is Rietveld 408576698