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

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

Issue 8934019: chromeos: Remove ScreenLockLibrary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years 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 | « no previous file | 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 24535153d109f5c85d23ce6167f84a52de11ed0a..2f06b765fefd8f3914b7539b43a20b78d200edbb 100644
--- a/chrome/browser/chromeos/cros/cros_library.h
+++ b/chrome/browser/chromeos/cros/cros_library.h
@@ -21,7 +21,6 @@ class CertLibrary;
class CryptohomeLibrary;
class LibraryLoader;
class NetworkLibrary;
-class ScreenLockLibrary;
// This class handles access to sub-parts of ChromeOS library. it provides
// a level of indirection so individual libraries that it exposes can
@@ -45,7 +44,6 @@ class CrosLibrary {
void SetBurnLibrary(BurnLibrary* library, bool own);
void SetCryptohomeLibrary(CryptohomeLibrary* library, bool own);
void SetNetworkLibrary(NetworkLibrary* library, bool own);
- void SetScreenLockLibrary(ScreenLockLibrary* library, bool own);
private:
friend class CrosLibrary;
@@ -68,7 +66,6 @@ class CrosLibrary {
CertLibrary* GetCertLibrary();
CryptohomeLibrary* GetCryptohomeLibrary();
NetworkLibrary* GetNetworkLibrary();
- ScreenLockLibrary* GetScreenLockLibrary();
// Getter for Test API that gives access to internal members of this class.
TestApi* GetTestApi();
@@ -131,7 +128,6 @@ class CrosLibrary {
Library<CertLibrary> cert_lib_;
Library<CryptohomeLibrary> crypto_lib_;
Library<NetworkLibrary> network_lib_;
- Library<ScreenLockLibrary> screen_lock_lib_;
// Stub implementations of the libraries should be used.
bool use_stub_impl_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/cros_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698