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 1ca9b561d12b58c528cd8070bf040f0eade2539c..220093840db610e18f00fe48e3743c13d939e032 100644 |
--- a/chrome/browser/chromeos/cros/cros_library.h |
+++ b/chrome/browser/chromeos/cros/cros_library.h |
@@ -15,7 +15,6 @@ template <typename T> struct DefaultLazyInstanceTraits; |
namespace chromeos { |
-class CertLibrary; |
class NetworkLibrary; |
// This class handles access to sub-parts of ChromeOS library. it provides |
@@ -30,7 +29,6 @@ class CrosLibrary { |
public: |
// 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 SetNetworkLibrary(NetworkLibrary* library, bool own); |
private: |
@@ -50,7 +48,6 @@ class CrosLibrary { |
// called (or Shutdown() has been called). |
static CrosLibrary* Get(); |
- CertLibrary* GetCertLibrary(); |
NetworkLibrary* GetNetworkLibrary(); |
// Getter for Test API that gives access to internal members of this class. |
@@ -102,7 +99,6 @@ class CrosLibrary { |
bool own_; |
}; |
- Library<CertLibrary> cert_lib_; |
Library<NetworkLibrary> network_lib_; |
// Stub implementations of the libraries should be used. |