// Copyright 2014 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_ERROR_MAP_H_ #define EXTENSIONS_BROWSER_ERROR_MAP_H_ #include <stddef.h> #include <map> #include <memory> #include <set> #include <string> #include "base/containers/circular_deque.h" #include "extensions/browser/extension_error.h" #include "extensions/common/extension_id.h" namespace extensions { ErrorList; // An ErrorMap is responsible for storing Extension-related errors, keyed by // Extension ID. class ErrorMap { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_ERROR_MAP_H_