[go: nahoru, domu]

blob: 58ab327c2b440f4022ec54a77297fa9dc82405b8 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/extensions/external_cache_delegate.h"
#include "base/values.h"
namespace chromeos {
void ExternalCacheDelegate::OnExtensionListsUpdated(
const base::Value::Dict& prefs) {}
void ExternalCacheDelegate::OnExtensionLoadedInCache(
const extensions::ExtensionId& id,
bool is_update) {}
void ExternalCacheDelegate::OnExtensionDownloadFailed(
const extensions::ExtensionId& id,
extensions::ExtensionDownloaderDelegate::Error error) {}
void ExternalCacheDelegate::OnCachedExtensionFileDeleted(
const extensions::ExtensionId& id) {}
bool ExternalCacheDelegate::IsRollbackAllowed() const {
return false;
}
bool ExternalCacheDelegate::CanRollbackNow() const {
return false;
}
} // namespace chromeos