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

Unified Diff: chrome/browser/extensions/updater/extension_updater.h

Issue 10689097: Enforce the 'requirements' field in manifests. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/updater/extension_updater.h
diff --git a/chrome/browser/extensions/updater/extension_updater.h b/chrome/browser/extensions/updater/extension_updater.h
index fd86dcbc9520d20c8262733f120c8790c6e34fa4..62cedc8d5b270c4f7c9247254313b074515bf307 100644
--- a/chrome/browser/extensions/updater/extension_updater.h
+++ b/chrome/browser/extensions/updater/extension_updater.h
@@ -93,12 +93,14 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
FetchedCRXFile();
FetchedCRXFile(const std::string& id,
const FilePath& path,
- const GURL& download_url);
+ const GURL& download_url,
+ const bool is_sync);
~FetchedCRXFile();
std::string id;
FilePath path;
GURL download_url;
+ bool is_sync;
};
// Computes when to schedule the first update check.
@@ -130,7 +132,8 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
const FilePath& path,
const GURL& download_url,
const std::string& version,
- const PingResult& ping) OVERRIDE;
+ const PingResult& ping,
+ const bool is_sync) OVERRIDE;
virtual void OnBlacklistDownloadFinished(const std::string& data,
const std::string& package_hash,

Powered by Google App Engine
This is Rietveld 408576698