chromium/chrome/browser/extensions/load_error_waiter.cc

// Copyright 2021 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/load_error_waiter.h"

namespace extensions {

LoadErrorWaiter::LoadErrorWaiter() {}

LoadErrorWaiter::~LoadErrorWaiter() = default;

void LoadErrorWaiter::OnLoadFailure(content::BrowserContext* browser_context,
                                    const base::FilePath& file_path,
                                    const std::string& error) {}

bool LoadErrorWaiter::Wait() {}

}  // namespace extensions