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

Side by Side Diff: chrome/browser/extensions/updater/extension_downloader_delegate.cc

Issue 540673002: Enable forced extension updates on NaCl arch mismatch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h" 5 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/version.h" 8 #include "base/version.h"
9 9
10 namespace extensions { 10 namespace extensions {
(...skipping 14 matching lines...) Expand all
25 const std::string& id, 25 const std::string& id,
26 ManifestFetchData::PingData* ping) { 26 ManifestFetchData::PingData* ping) {
27 return false; 27 return false;
28 } 28 }
29 29
30 std::string ExtensionDownloaderDelegate::GetUpdateUrlData( 30 std::string ExtensionDownloaderDelegate::GetUpdateUrlData(
31 const std::string& id) { 31 const std::string& id) {
32 return std::string(); 32 return std::string();
33 } 33 }
34 34
35 bool ExtensionDownloaderDelegate::ShouldForceUpdate(
36 const std::string& id,
37 std::string* source) {
38 return false;
39 }
40
35 } // namespace extensions 41 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698