diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 21:13:57 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 21:13:57 +0000 |
commit | 5fe3a5c1c887bd44e0778baae398f857c1f7eb2e (patch) | |
tree | 0ae8b88a468859cb47ddba60aa1fd5cd34d71f63 /chrome/browser/chromeos/cros/cros_library.h | |
parent | fef740228a40dd2bb74d1f500b7477dff3a95a92 (diff) | |
download | chromium_src-5fe3a5c1c887bd44e0778baae398f857c1f7eb2e.zip chromium_src-5fe3a5c1c887bd44e0778baae398f857c1f7eb2e.tar.gz chromium_src-5fe3a5c1c887bd44e0778baae398f857c1f7eb2e.tar.bz2 |
chromeos: Remove UpdateLibrary code, which is no longer used.
This is part 3 of the UpdateLibrary to UpdateEngineClient migration.
Hopefully, this is the last step.
BUG=chromium-os:16564
TEST=chrome and tests build as before
Review URL: http://codereview.chromium.org/8637020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111215 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/cros/cros_library.h')
-rw-r--r-- | chrome/browser/chromeos/cros/cros_library.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/browser/chromeos/cros/cros_library.h b/chrome/browser/chromeos/cros/cros_library.h index 764c143..8c28ab5 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_; |