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

Side by Side Diff: chrome/browser/extensions/updater/chrome_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 CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_MANIFEST_FETCH_DATA_DELEGATE_H_
6 #define CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_MANIFEST_FETCH_DATA_DELEGATE_H_
7
8 #include "base/macros.h"
9 #include "extensions/browser/updater/manifest_fetch_data_delegate.h"
10
11 class ChromeManifestFetchDataDelegate
12 : public extensions::ManifestFetchDataDelegate {
13 public:
14 ChromeManifestFetchDataDelegate();
15 virtual ~ChromeManifestFetchDataDelegate();
16
17 // ManifestFetchDelegate implementation.
18 virtual std::string GetBaseQueryParams() OVERRIDE;
19 virtual bool ShouldAlwaysCheckWebstore() OVERRIDE;
20 virtual std::string GetBrandCode() OVERRIDE;
21 virtual std::string GetPingParamsAndData(
22 const std::string& extension_id,
23 const extensions::ManifestFetchData::PingData& old_ping_data,
24 extensions::ManifestFetchData::PingData* new_ping_data) OVERRIDE;
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(ChromeManifestFetchDataDelegate);
28 };
29
30 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_CHROME_MANIFEST_FETCH_DATA_DELEGATE _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698