// 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_GROUP_H_ #define EXTENSIONS_BROWSER_PRELOAD_CHECK_GROUP_H_ #include <vector> #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "base/threading/thread_checker.h" #include "extensions/browser/preload_check.h" namespace extensions { // PreloadCheckGroup runs a collection of other PreloadChecks and reports their // collective status once they have all finished. To stop the remaining checks // upon hitting the first error, use set_stop_on_first_error(). class PreloadCheckGroup : public PreloadCheck { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_PRELOAD_CHECK_GROUP_H_