Index: chromeos/timezone/timezone_resolver.h |
diff --git a/chromeos/timezone/timezone_resolver.h b/chromeos/timezone/timezone_resolver.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0ed1492b2843b21ec95a8572e266e44f14c6258b |
--- /dev/null |
+++ b/chromeos/timezone/timezone_resolver.h |
@@ -0,0 +1,70 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_ |
+#define CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_ |
+ |
+#include "base/callback.h" |
+#include "base/macros.h" |
+#include "base/threading/thread_checker.h" |
+#include "chromeos/chromeos_export.h" |
+#include "url/gurl.h" |
+ |
+class PrefRegistrySimple; |
+ |
+namespace net { |
+class URLRequestContextGetter; |
+} |
+ |
+namespace chromeos { |
+ |
+struct TimeZoneResponseData; |
+ |
+// This class implements periodic timezone synchronization. |
Dmitry Polukhin
2015/01/20 15:32:28
Please describe logic how periodic refresh happens
|
+class CHROMEOS_EXPORT TimeZoneResolver { |
+ public: |
+ class TimeZoneResolverImpl; |
+ |
+ // This callback will be called when new timezone arrives. |
+ typedef base::Callback<void(const TimeZoneResponseData*)> |
+ ApplyTimeZoneCallback; |
+ |
+ // chromeos::DelayNetworkCall cannot be used directly due to link |
+ // restrictions. |
+ typedef base::Callback<void(const base::Closure&)> DelayNetworkCallClosure; |
+ |
+ TimeZoneResolver(net::URLRequestContextGetter* context, |
+ const GURL& url, |
+ const ApplyTimeZoneCallback& apply_timezone, |
+ const DelayNetworkCallClosure& delay_network_call); |
+ ~TimeZoneResolver(); |
+ |
+ // Starts periodic timezone refresh. |
+ void Start(); |
+ |
+ // Cancels current request and stops periodic timezone refresh. |
+ void Stop(); |
+ |
+ // Expose internal fuctions for testing. |
+ static int MaxRequestsCountForIntervalForTesting( |
+ const double interval_seconds); |
+ static int IntervalForNextRequestForTesting(const int requests); |
+ |
+ private: |
+ net::URLRequestContextGetter* const context_; |
+ const GURL url_; |
+ |
+ const ApplyTimeZoneCallback apply_timezone_; |
+ const DelayNetworkCallClosure delay_network_call_; |
+ |
+ scoped_ptr<TimeZoneResolverImpl> implementation_; |
+ |
+ base::ThreadChecker thread_checker_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(TimeZoneResolver); |
+}; |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_ |