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

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

Issue 8637020: chromeos: Remove UpdateLibrary code, which is no longer used. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 764c143b6166b618af6b18d75d84150223dc4106..8c28ab5a98c2de027b86d12a093318aa7ec1560e 100644
--- a/chrome/browser/chromeos/cros/cros_library.h
+++ b/chrome/browser/chromeos/cros/cros_library.h
@@ -23,7 +23,6 @@ class LibraryLoader;
class NetworkLibrary;
class PowerLibrary;
class ScreenLockLibrary;
-class UpdateLibrary;
// This class handles access to sub-parts of ChromeOS library. it provides
// a level of indirection so individual libraries that it exposes can
@@ -49,7 +48,6 @@ class CrosLibrary {
void SetNetworkLibrary(NetworkLibrary* library, bool own);
void SetPowerLibrary(PowerLibrary* library, bool own);
void SetScreenLockLibrary(ScreenLockLibrary* library, bool own);
- void SetUpdateLibrary(UpdateLibrary* library, bool own);
private:
friend class CrosLibrary;
@@ -74,7 +72,6 @@ class CrosLibrary {
NetworkLibrary* GetNetworkLibrary();
PowerLibrary* GetPowerLibrary();
ScreenLockLibrary* GetScreenLockLibrary();
- UpdateLibrary* GetUpdateLibrary();
// Getter for Test API that gives access to internal members of this class.
TestApi* GetTestApi();
@@ -139,7 +136,6 @@ class CrosLibrary {
Library<NetworkLibrary> network_lib_;
Library<PowerLibrary> power_lib_;
Library<ScreenLockLibrary> screen_lock_lib_;
- Library<UpdateLibrary> update_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