blob: 222d98ec22f347c7525c5fcef745c0955be58332 [file] [log] [blame]
// Copyright 2022 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/extensions/fake_crx_installer.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
namespace extensions {
FakeCrxInstaller::FakeCrxInstaller(content::BrowserContext* context)
: CrxInstaller(context, nullptr, nullptr) {}
FakeCrxInstaller::~FakeCrxInstaller() = default;
void FakeCrxInstaller::InstallCrxFile(const CRXFileInfo& info) {}
} // namespace extensions