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

Unified Diff: components/quirks/quirks_manager.h

Issue 1528963002: Quirks Client for downloading and providing display profiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small cleanup Created 4 years, 9 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
Index: components/quirks/quirks_manager.h
diff --git a/components/quirks/quirks_manager.h b/components/quirks/quirks_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..af1becf9c6dbd730d82dec5cedb57095025a10ce
--- /dev/null
+++ b/components/quirks/quirks_manager.h
@@ -0,0 +1,167 @@
+// Copyright 2016 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 COMPONENTS_QUIRKS_QUIRKS_MANAGER_H_
+#define COMPONENTS_QUIRKS_QUIRKS_MANAGER_H_
+
+#include <set>
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "base/time/time.h"
+#include "components/quirks/quirks_client.h"
+#include "components/quirks/quirks_export.h"
+
+class GURL;
+class PrefRegistrySimple;
+class PrefService;
+
+namespace base {
+class SequencedWorkerPool;
+class SingleThreadTaskRunner;
+}
+
+namespace net {
+class URLFetcher;
+class URLFetcherDelegate;
+class URLRequestContextGetter;
+}
+
+namespace quirks {
+
+// Format int as hex string for filename.
+QUIRKS_EXPORT std::string IdToHexString(int64_t product_id);
+
+// Append ".icc" to hex string in filename.
+QUIRKS_EXPORT std::string IdToFileName(int64_t product_id);
+
+// Finds icc file, if it exists; creates and starts QuirksClient if it doesn't.
+// In all cases, sends results to provided callback.
+QUIRKS_EXPORT void RequestIccProfilePath(
+ int64_t product_id,
+ const RequestFinishedCallback& on_request_finished);
+
+// Handles needed components from browser (local preferences, url context
+// getter, blocking pool, etc).
+class QUIRKS_EXPORT QuirksManager {
+ public:
+ using FakeQuirksFetcherCreator =
+ base::Callback<scoped_ptr<net::URLFetcher>(const GURL&,
+ net::URLFetcherDelegate*)>;
+
+ using DaysSinceOobeCallback = base::Callback<void(int)>;
+
+ // Delegate class, so implementation can access browser functionality.
+ class Delegate {
+ public:
+ virtual ~Delegate() = default;
+
+ // Provides Chrome API key for quirks server.
+ virtual std::string GetApiKey() const = 0;
+
+ // Returns the read-only directory where icc files were added before the
+ // Quirks Client provided them.
+ virtual base::FilePath GetBuiltInDisplayProfileDirectory() const = 0;
+
+ // Returns the path to the writable display profile directory.
+ // This directory must already exist.
+ virtual base::FilePath GetDownloadDisplayProfileDirectory() const = 0;
+
+ // Gets days since first login, returns via callback.
+ virtual void GetDaysSinceOobe(
+ scoped_refptr<base::SequencedWorkerPool> blocking_pool,
+ DaysSinceOobeCallback callback) const = 0;
+
+ private:
+ DISALLOW_ASSIGN(Delegate);
+ };
+
+ static void Initialize(
+ scoped_ptr<Delegate> delegate,
+ scoped_refptr<base::SequencedWorkerPool> blocking_pool,
+ PrefService* local_state,
+ scoped_refptr<net::URLRequestContextGetter> url_context_getter);
+ static void Shutdown();
+ static QuirksManager* Get();
+
+ static void RegisterPrefs(PrefRegistrySimple* registry);
+
+ // Entry point into manager. Finds or downloads icc file.
+ void RequestIccFilePath(int64_t product_id,
+ const RequestFinishedCallback& on_request_finished);
+
+ void ClientFinished(QuirksClient* client);
+
+ // UMA stats for server check reason and results.
+ void RecordReasonUmaStat(QuirksClient::RequestReason reason);
+ void RecordFileFoundUmaStat(bool success);
+
+ // Creates a real URLFetcher for OS, and a fake one for tests.
+ scoped_ptr<net::URLFetcher> CreateURLFetcher(
+ const std::string& url,
+ net::URLFetcherDelegate* delegate);
+
+ Delegate* delegate() const { return delegate_.get(); }
+ base::SequencedWorkerPool* blocking_pool() const {
+ return blocking_pool_.get();
+ }
+
+ net::URLRequestContextGetter* url_context_getter() const {
+ return url_context_getter_.get();
+ }
+
+ protected:
+ friend class QuirksBrowserTest;
+
+ void SetFakeQuirksFetcherCreatorForTests(
+ const FakeQuirksFetcherCreator& creator) {
+ fake_quirks_fetcher_creator_ = creator;
+ }
+
+ private:
+ QuirksManager(Delegate* delegate,
+ scoped_refptr<base::SequencedWorkerPool> blocking_pool,
+ PrefService* local_state,
+ scoped_refptr<net::URLRequestContextGetter> url_context_getter);
+ ~QuirksManager();
+
+ // Callback after checking for existing icc file; proceed if not found.
+ void OnIccFilePathRequestCompleted(
+ int64_t product_id,
+ const RequestFinishedCallback& on_request_finished,
+ base::FilePath path);
+
+ // Callback after checking OOBE date; launch client if appropriate.
+ void OnDaysSinceOobeGotten(int64_t product_id,
+ const RequestFinishedCallback& on_request_finished,
+ int days_since_oobe);
+
+ // Create and start a client to download file.
+ void RunClient(int64_t product_id,
+ const RequestFinishedCallback& on_request_finished);
+
+ // Records time of most recent server check.
+ void SetLastServerCheck(int64_t product_id, const base::Time& last_check);
+
+ std::set<scoped_ptr<QuirksClient>> clients_;
+
+ // These objects provide resources from the browser.
+ scoped_ptr<Delegate> delegate_; // Impl runs from chrome/browser.
+ scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
+ PrefService* local_state_; // For local prefs.
+ scoped_refptr<net::URLRequestContextGetter> url_context_getter_;
+
+ FakeQuirksFetcherCreator fake_quirks_fetcher_creator_; // For tests.
+
+ // Factory for callbacks.
+ base::WeakPtrFactory<QuirksManager> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(QuirksManager);
+};
+
+} // namespace quirks
+
+#endif // COMPONENTS_QUIRKS_QUIRKS_MANAGER_H_

Powered by Google App Engine
This is Rietveld 408576698