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

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

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/system_library.h ('k') | chrome/browser/chromeos/cros/update_library.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/system_library.cc
diff --git a/chrome/browser/chromeos/cros/system_library.cc b/chrome/browser/chromeos/cros/system_library.cc
index 7f528d1ce22c9cfedde6e9959158ff524b8662fc..e09172b3d39a68af0ccfa76ac35fc8476f5c962f 100644
--- a/chrome/browser/chromeos/cros/system_library.cc
+++ b/chrome/browser/chromeos/cros/system_library.cc
@@ -9,47 +9,86 @@
namespace chromeos {
-SystemLibraryImpl::SystemLibraryImpl() {
- std::string id = "US/Pacific";
- if (CrosLibrary::Get()->EnsureLoaded()) {
- std::string timezone_id = chromeos::GetTimezoneID();
- if (timezone_id.empty()) {
- LOG(ERROR) << "Got an empty string for timezone, default to " << id;
- } else {
- id = timezone_id;
+class SystemLibraryImpl : public SystemLibrary {
+ public:
+ SystemLibraryImpl() {
+ std::string id = "US/Pacific";
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ std::string timezone_id = chromeos::GetTimezoneID();
+ if (timezone_id.empty()) {
+ LOG(ERROR) << "Got an empty string for timezone, default to " << id;
+ } else {
+ id = timezone_id;
+ }
}
+ icu::TimeZone* timezone =
+ icu::TimeZone::createTimeZone(icu::UnicodeString::fromUTF8(id));
+ timezone_.reset(timezone);
+ icu::TimeZone::setDefault(*timezone);
+ LOG(INFO) << "Timezone is " << id;
}
- icu::TimeZone* timezone =
- icu::TimeZone::createTimeZone(icu::UnicodeString::fromUTF8(id));
- timezone_.reset(timezone);
- icu::TimeZone::setDefault(*timezone);
- LOG(INFO) << "Timezone is " << id;
-}
-void SystemLibraryImpl::AddObserver(Observer* observer) {
- observers_.AddObserver(observer);
-}
+ void AddObserver(Observer* observer) {
+ observers_.AddObserver(observer);
+ }
-void SystemLibraryImpl::RemoveObserver(Observer* observer) {
- observers_.RemoveObserver(observer);
-}
+ void RemoveObserver(Observer* observer) {
+ observers_.RemoveObserver(observer);
+ }
-const icu::TimeZone& SystemLibraryImpl::GetTimezone() {
- return *timezone_.get();
-}
+ const icu::TimeZone& GetTimezone() {
+ return *timezone_.get();
+ }
+
+ void SetTimezone(const icu::TimeZone* timezone) {
+ timezone_.reset(timezone->clone());
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ icu::UnicodeString unicode;
+ timezone->getID(unicode);
+ std::string id;
+ UTF16ToUTF8(unicode.getBuffer(), unicode.length(), &id);
+ LOG(INFO) << "Setting timezone to " << id;
+ chromeos::SetTimezoneID(id);
+ }
+ icu::TimeZone::setDefault(*timezone);
+ FOR_EACH_OBSERVER(Observer, observers_, TimezoneChanged(*timezone));
+ }
+
+ private:
+ scoped_ptr<icu::TimeZone> timezone_;
+ ObserverList<Observer> observers_;
+
+ DISALLOW_COPY_AND_ASSIGN(SystemLibraryImpl);
+};
-void SystemLibraryImpl::SetTimezone(const icu::TimeZone* timezone) {
- timezone_.reset(timezone->clone());
- if (CrosLibrary::Get()->EnsureLoaded()) {
- icu::UnicodeString unicode;
- timezone->getID(unicode);
- std::string id;
- UTF16ToUTF8(unicode.getBuffer(), unicode.length(), &id);
- LOG(INFO) << "Setting timezone to " << id;
- chromeos::SetTimezoneID(id);
+class SystemLibraryStubImpl : public SystemLibrary {
+ public:
+ SystemLibraryStubImpl() {
+ std::string id = "US/Pacific";
+ icu::TimeZone* timezone =
+ icu::TimeZone::createTimeZone(icu::UnicodeString::fromUTF8(id));
+ timezone_.reset(timezone);
}
- icu::TimeZone::setDefault(*timezone);
- FOR_EACH_OBSERVER(Observer, observers_, TimezoneChanged(*timezone));
+ ~SystemLibraryStubImpl() {}
+
+ void AddObserver(Observer* observer) {}
+ void RemoveObserver(Observer* observer) {}
+ const icu::TimeZone& GetTimezone() {
+ return *timezone_.get();
+ }
+ void SetTimezone(const icu::TimeZone* timezone) {}
+
+ private:
+ scoped_ptr<icu::TimeZone> timezone_;
+ DISALLOW_COPY_AND_ASSIGN(SystemLibraryStubImpl);
+};
+
+// static
+SystemLibrary* SystemLibrary::GetImpl(bool stub) {
+ if (stub)
+ return new SystemLibraryStubImpl();
+ else
+ return new SystemLibraryImpl();
}
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/system_library.h ('k') | chrome/browser/chromeos/cros/update_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698