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

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

Issue 2859043: Added system notification for update_engine. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: . Created 10 years, 5 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/browser_init.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 286e532aab1442aa4815cb795646a5ce6fd1c15e..b08254a6fbcf4fe336be2685a108610d3e4a559c 100644
--- a/chrome/browser/chromeos/cros/cros_library.h
+++ b/chrome/browser/chromeos/cros/cros_library.h
@@ -24,6 +24,7 @@ class SpeechSynthesisLibrary;
class SynapticsLibrary;
class SyslogsLibrary;
class SystemLibrary;
+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
@@ -64,6 +65,8 @@ class CrosLibrary {
void SetSyslogsLibrary(SyslogsLibrary* library, bool own);
// Setter for SystemLibrary.
void SetSystemLibrary(SystemLibrary* library, bool own);
+ // Setter for UpdateLibrary.
+ void SetUpdateLibrary(UpdateLibrary* library, bool own);
private:
friend class CrosLibrary;
@@ -110,6 +113,9 @@ class CrosLibrary {
// This gets the singleton SystemLibrary.
SystemLibrary* GetSystemLibrary();
+ // This gets the singleton UpdateLibrary.
+ UpdateLibrary* GetUpdateLibrary();
+
// Getter for Test API that gives access to internal members of this class.
TestApi* GetTestApi();
@@ -142,6 +148,7 @@ class CrosLibrary {
SynapticsLibrary* synaptics_lib_;
SyslogsLibrary* syslogs_lib_;
SystemLibrary* system_lib_;
+ UpdateLibrary* update_lib_;
bool own_library_loader_;
bool own_cryptohome_lib_;
@@ -156,6 +163,7 @@ class CrosLibrary {
bool own_synaptics_lib_;
bool own_syslogs_lib_;
bool own_system_lib_;
+ bool own_update_lib_;
// True if libcros was successfully loaded.
bool loaded_;
« no previous file with comments | « chrome/browser/browser_init.cc ('k') | chrome/browser/chromeos/cros/cros_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698