// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_PRELOAD_CHECK_H_ #define EXTENSIONS_BROWSER_PRELOAD_CHECK_H_ #include <set> #include <string> #include "base/functional/callback.h" #include "base/memory/scoped_refptr.h" namespace extensions { class Extension; // Encapsulates a possibly asynchronous operation to verify whether a // precondition holds for loading the given extension. class PreloadCheck { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_PRELOAD_CHECK_H_