// Copyright 2012 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_WARNING_SET_H_ #define EXTENSIONS_BROWSER_WARNING_SET_H_ #include <set> #include <string> #include <vector> #include "extensions/common/extension_id.h" namespace base { class FilePath; } namespace extensions { class ExtensionSet; // This class is used by the WarningService to represent warnings if extensions // misbehave. Note that the WarningService deals only with specific warnings // that should trigger a badge on the Chrome menu button. class Warning { … }; WarningSet; } // namespace extensions #endif // EXTENSIONS_BROWSER_WARNING_SET_H_