Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef EXTENSIONS_BROWSER_UPDATER_DEFAULT_MANIFEST_FETCH_DATA_DELEGATE_H_ | |
| 6 #define EXTENSIONS_BROWSER_UPDATER_DEFAULT_MANIFEST_FETCH_DATA_DELEGATE_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "extensions/browser/updater/manifest_fetch_data_delegate.h" | |
| 10 | |
| 11 namespace extensions { | |
| 12 | |
| 13 class DefaultManifestFetchDataDelegate : public ManifestFetchDataDelegate { | |
| 14 public: | |
| 15 DefaultManifestFetchDataDelegate(); | |
| 16 virtual ~DefaultManifestFetchDataDelegate(); | |
| 17 | |
| 18 // ManifestFetchDelegate implementation. | |
| 19 virtual std::string GetBaseQueryParams() OVERRIDE; | |
| 20 virtual bool ShouldAlwaysCheckWebstore() OVERRIDE; | |
| 21 virtual std::string GetBrandCode() OVERRIDE; | |
|
not at google - send to devlin
2014/08/12 16:33:02
I guess that it's "nice", in some respects, to lum
| |
| 22 virtual std::string GetPingParamsAndData( | |
| 23 const std::string& extension_id, | |
| 24 const ManifestFetchData::PingData& old_ping_data, | |
| 25 ManifestFetchData::PingData* new_ping_data) OVERRIDE; | |
| 26 | |
| 27 private: | |
| 28 DISALLOW_COPY_AND_ASSIGN(DefaultManifestFetchDataDelegate); | |
| 29 }; | |
| 30 | |
| 31 } // namespace extensions | |
| 32 | |
| 33 #endif // EXTENSIONS_BROWSER_UPDATER_DEFAULT_MANIFEST_FETCH_DATA_DELEGATE_H_ | |
| OLD | NEW |