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

Unified Diff: chrome/browser/extensions/updater/extension_downloader_delegate.cc

Issue 654363002: Move ExtensionDownloader to //extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_downloader_delegate.cc
diff --git a/chrome/browser/extensions/updater/extension_downloader_delegate.cc b/chrome/browser/extensions/updater/extension_downloader_delegate.cc
deleted file mode 100644
index ab3f734dc3de5a7fe9753cf3ca3cf9b4f065e821..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/updater/extension_downloader_delegate.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/extensions/updater/extension_downloader_delegate.h"
-
-#include "base/logging.h"
-#include "base/version.h"
-
-namespace extensions {
-
-ExtensionDownloaderDelegate::PingResult::PingResult() : did_ping(false) {}
-
-ExtensionDownloaderDelegate::PingResult::~PingResult() {}
-
-ExtensionDownloaderDelegate::~ExtensionDownloaderDelegate() {}
-
-void ExtensionDownloaderDelegate::OnExtensionDownloadFailed(
- const std::string& id,
- ExtensionDownloaderDelegate::Error error,
- const ExtensionDownloaderDelegate::PingResult& ping_result,
- const std::set<int>& request_id) {}
-
-bool ExtensionDownloaderDelegate::GetPingDataForExtension(
- const std::string& id,
- ManifestFetchData::PingData* ping) {
- return false;
-}
-
-std::string ExtensionDownloaderDelegate::GetUpdateUrlData(
- const std::string& id) {
- return std::string();
-}
-
-bool ExtensionDownloaderDelegate::ShouldForceUpdate(
- const std::string& id,
- std::string* source) {
- return false;
-}
-
-} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698