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

Side by Side Diff: extensions/browser/updater/default_manifest_fetch_data_delegate.h

Issue 465543004: Factor Chrome details out of update manifest fetching. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698