| Index: components/precache/core/precache_fetcher.h
|
| diff --git a/components/precache/core/precache_fetcher.h b/components/precache/core/precache_fetcher.h
|
| index 3ccb1946b9537b092f8e8a2d1fcdb8ea9f8dc78e..d6c3fa416de693070e9605100bb8e6a027b4842f 100644
|
| --- a/components/precache/core/precache_fetcher.h
|
| +++ b/components/precache/core/precache_fetcher.h
|
| @@ -105,12 +105,12 @@ class PrecacheFetcher : public base::SupportsWeakPtr<PrecacheFetcher> {
|
| // prioritized list of hosts that the user commonly visits. These hosts are
|
| // used by a server side component to construct a list of resource URLs that
|
| // the user is likely to fetch. Takes ownership of |unfinished_work|.
|
| - PrecacheFetcher(
|
| - net::URLRequestContextGetter* request_context,
|
| - const GURL& config_url,
|
| - const std::string& manifest_url_prefix,
|
| - std::unique_ptr<PrecacheUnfinishedWork> unfinished_work,
|
| - PrecacheDelegate* precache_delegate);
|
| + PrecacheFetcher(net::URLRequestContextGetter* request_context,
|
| + const GURL& config_url,
|
| + const std::string& manifest_url_prefix,
|
| + std::unique_ptr<PrecacheUnfinishedWork> unfinished_work,
|
| + uint32_t experiment_id,
|
| + PrecacheDelegate* precache_delegate);
|
|
|
| virtual ~PrecacheFetcher();
|
|
|
| @@ -179,6 +179,9 @@ class PrecacheFetcher : public base::SupportsWeakPtr<PrecacheFetcher> {
|
|
|
| std::unique_ptr<PrecacheUnfinishedWork> unfinished_work_;
|
|
|
| + // The fieldtrial experiment ID.
|
| + uint32_t experiment_id_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(PrecacheFetcher);
|
| };
|
|
|
|
|