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

Unified Diff: chrome/browser/chromeos/login/apply_services_customization.h

Issue 3026048: Fetch OEM services customization manifest from URL async.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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/browser_prefs.cc ('k') | chrome/browser/chromeos/login/apply_services_customization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/apply_services_customization.h
===================================================================
--- chrome/browser/chromeos/login/apply_services_customization.h (revision 54872)
+++ chrome/browser/chromeos/login/apply_services_customization.h (working copy)
@@ -2,26 +2,44 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_STRING_FETCHER_H_
-#define CHROME_BROWSER_CHROMEOS_LOGIN_STRING_FETCHER_H_
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_APPLY_SERVICES_CUSTOMIZATION_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_APPLY_SERVICES_CUSTOMIZATION_H_
#include <string>
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
+#include "base/timer.h"
#include "chrome/common/net/url_fetcher.h"
+#include "googleurl/src/gurl.h"
-// This class is used to fetch an URL and store result as a string.
-class StringFetcher : public URLFetcher::Delegate {
+class PrefService;
+
+namespace chromeos {
+
+// This class fetches services customization document and apply it
+// as soon as the document is downloaded.
+class ApplyServicesCustomization : public URLFetcher::Delegate {
public:
- // Initiates URL fetch.
- explicit StringFetcher(const std::string& url);
+ // This method checks if service customization has been applied and if not
+ // starts the process.
+ static void StartIfNeeded();
- const std::string& result() const { return result_; }
- int response_code() const { return response_code_; }
- bool succeeded() const { return response_code_ == 200; }
+ // Registers preferences.
+ static void RegisterPrefs(PrefService* local_state);
+ // Returns true if service customization has been applied.
+ static bool IsApplied();
+
private:
+ explicit ApplyServicesCustomization(const std::string& url_str);
+
+ // Initiate URL fetch, return true if the object will delete itself later.
+ bool Init();
+
+ // Initiate file fetching.
+ void StartFileFetch();
+
// Overriden from URLFetcher::Delegate:
virtual void OnURLFetchComplete(const URLFetcher* source,
const GURL& url,
@@ -29,19 +47,28 @@
int response_code,
const ResponseCookies& cookies,
const std::string& data);
- // Timer notification handler.
- void OnTimeoutElapsed();
+ // Applies given |manifest|.
+ void Apply(const std::string& manifest);
+
+ // Remember in local state status of kServicesCustomizationAppliedPref.
+ static void SetApplied(bool val);
+
+ // Services customization manifest URL.
+ GURL url_;
+
// URLFetcher instance.
scoped_ptr<URLFetcher> url_fetcher_;
- // Fetch result.
- std::string result_;
+ // Timer to retry fetching file if network is not available.
+ base::OneShotTimer<ApplyServicesCustomization> retry_timer_;
- // Received HTTP response code.
- int response_code_;
+ // How many times we already tried to fetch customization manifest file.
+ int num_retries_;
- DISALLOW_COPY_AND_ASSIGN(StringFetcher);
+ DISALLOW_COPY_AND_ASSIGN(ApplyServicesCustomization);
};
-#endif // CHROME_BROWSER_CHROMEOS_LOGIN_STRING_FETCHER_H_
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_APPLY_SERVICES_CUSTOMIZATION_H_
Property changes on: chrome/browser/chromeos/login/apply_services_customization.h
___________________________________________________________________
Added: svn:mergeinfo
« no previous file with comments | « chrome/browser/browser_prefs.cc ('k') | chrome/browser/chromeos/login/apply_services_customization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698