| 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 27 matching lines...) Expand all Loading... |
| 38 std::string GetOSLongName() const override; | 38 std::string GetOSLongName() const override; |
| 39 std::string ExtraRequestParams() const override; | 39 std::string ExtraRequestParams() const override; |
| 40 std::string GetDownloadPreference() const override; | 40 std::string GetDownloadPreference() const override; |
| 41 net::URLRequestContextGetter* RequestContext() const override; | 41 net::URLRequestContextGetter* RequestContext() const override; |
| 42 scoped_refptr<update_client::OutOfProcessPatcher> CreateOutOfProcessPatcher() | 42 scoped_refptr<update_client::OutOfProcessPatcher> CreateOutOfProcessPatcher() |
| 43 const override; | 43 const override; |
| 44 bool EnabledDeltas() const override; | 44 bool EnabledDeltas() const override; |
| 45 bool EnabledComponentUpdates() const override; | 45 bool EnabledComponentUpdates() const override; |
| 46 bool EnabledBackgroundDownloader() const override; | 46 bool EnabledBackgroundDownloader() const override; |
| 47 bool EnabledCupSigning() const override; | 47 bool EnabledCupSigning() const override; |
| 48 bool EnabledImprovedRecovery() const override; |
| 48 PrefService* GetPrefService() const override; | 49 PrefService* GetPrefService() const override; |
| 49 bool IsPerUserInstall() const override; | 50 bool IsPerUserInstall() const override; |
| 50 | 51 |
| 51 protected: | 52 protected: |
| 52 friend class base::RefCountedThreadSafe<ChromeUpdateClientConfig>; | 53 friend class base::RefCountedThreadSafe<ChromeUpdateClientConfig>; |
| 53 ~ChromeUpdateClientConfig() override; | 54 ~ChromeUpdateClientConfig() override; |
| 54 | 55 |
| 55 private: | 56 private: |
| 56 component_updater::ConfiguratorImpl impl_; | 57 component_updater::ConfiguratorImpl impl_; |
| 57 | 58 |
| 58 DISALLOW_COPY_AND_ASSIGN(ChromeUpdateClientConfig); | 59 DISALLOW_COPY_AND_ASSIGN(ChromeUpdateClientConfig); |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 } // namespace extensions | 62 } // namespace extensions |
| 62 | 63 |
| 63 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ | 64 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_UPDATE_CLIENT_CONFIG_H_ |
| OLD | NEW |