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

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

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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/syslogs_library.cc ('k') | chrome/browser/chromeos/cros/system_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/system_library.h
diff --git a/chrome/browser/chromeos/cros/system_library.h b/chrome/browser/chromeos/cros/system_library.h
index c84905f96273615d54cdb678544343ab0bf6c8a9..b81cc4c97897a2ddfd0c9d9772e57c2c8f480e1b 100644
--- a/chrome/browser/chromeos/cros/system_library.h
+++ b/chrome/browser/chromeos/cros/system_library.h
@@ -33,26 +33,9 @@ class SystemLibrary {
// Sets the current timezone. |timezone| must be non-null.
virtual void SetTimezone(const icu::TimeZone* timezone) = 0;
-};
-
-// This class handles the interaction with the ChromeOS syslogs APIs.
-class SystemLibraryImpl : public SystemLibrary {
- public:
- SystemLibraryImpl();
- virtual ~SystemLibraryImpl() {}
-
- // NetworkLibrary overrides.
- virtual void AddObserver(Observer* observer);
- virtual void RemoveObserver(Observer* observer);
-
- virtual const icu::TimeZone& GetTimezone();
- virtual void SetTimezone(const icu::TimeZone*);
-
- private:
- scoped_ptr<icu::TimeZone> timezone_;
- ObserverList<Observer> observers_;
- DISALLOW_COPY_AND_ASSIGN(SystemLibraryImpl);
+ // Get library implementation.
+ static SystemLibrary* GetImpl(bool stub);
};
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/syslogs_library.cc ('k') | chrome/browser/chromeos/cros/system_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698