| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 int InitialDelay() const override; | 26 int InitialDelay() const override; |
| 27 int NextCheckDelay() const override; | 27 int NextCheckDelay() const override; |
| 28 int StepDelay() const override; | 28 int StepDelay() const override; |
| 29 int OnDemandDelay() const override; | 29 int OnDemandDelay() const override; |
| 30 int UpdateDelay() const override; | 30 int UpdateDelay() const override; |
| 31 std::vector<GURL> UpdateUrl() const override; | 31 std::vector<GURL> UpdateUrl() const override; |
| 32 std::vector<GURL> PingUrl() const override; | 32 std::vector<GURL> PingUrl() const override; |
| 33 base::Version GetBrowserVersion() const override; | 33 base::Version GetBrowserVersion() const override; |
| 34 std::string GetChannel() const override; | 34 std::string GetChannel() const override; |
| 35 std::string GetBrand() const override; |
| 35 std::string GetLang() const override; | 36 std::string GetLang() const override; |
| 36 std::string GetOSLongName() const override; | 37 std::string GetOSLongName() const override; |
| 37 std::string ExtraRequestParams() const override; | 38 std::string ExtraRequestParams() const override; |
| 38 std::string GetDownloadPreference() const override; | 39 std::string GetDownloadPreference() const override; |
| 39 net::URLRequestContextGetter* RequestContext() const override; | 40 net::URLRequestContextGetter* RequestContext() const override; |
| 40 scoped_refptr<update_client::OutOfProcessPatcher> CreateOutOfProcessPatcher() | 41 scoped_refptr<update_client::OutOfProcessPatcher> CreateOutOfProcessPatcher() |
| 41 const override; | 42 const override; |
| 42 bool DeltasEnabled() const override; | 43 bool DeltasEnabled() const override; |
| 43 bool UseBackgroundDownloader() const override; | 44 bool UseBackgroundDownloader() const override; |
| 44 bool UseCupSigning() const override; | 45 bool UseCupSigning() const override; |
| 45 | 46 |
| 46 protected: | 47 protected: |
| 47 friend class base::RefCountedThreadSafe<ChromeUpdateClientConfig>; | 48 friend class base::RefCountedThreadSafe<ChromeUpdateClientConfig>; |
| 48 ~ChromeUpdateClientConfig() override; | 49 ~ChromeUpdateClientConfig() override; |
| 49 | 50 |
| 50 private: | 51 private: |
| 51 component_updater::ConfiguratorImpl impl_; | 52 component_updater::ConfiguratorImpl impl_; |
| 52 | 53 |
| 53 DISALLOW_COPY_AND_ASSIGN(ChromeUpdateClientConfig); | 54 DISALLOW_COPY_AND_ASSIGN(ChromeUpdateClientConfig); |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 } // namespace extensions | 57 } // namespace extensions |
| 57 | 58 |
| 58 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ | 59 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ |
| OLD | NEW |