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

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

Issue 14522013: Separate cert loading code from CertLibrary and move to src/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 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
« no previous file with comments | « chrome/browser/chromeos/cros/cert_library.cc ('k') | chrome/browser/chromeos/cros/cros_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « chrome/browser/chromeos/cros/cert_library.cc ('k') | chrome/browser/chromeos/cros/cros_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698