// Copyright 2013 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_COMMON_EXTENSION_SET_H_ #define EXTENSIONS_COMMON_EXTENSION_SET_H_ #include <iterator> #include <map> #include <string> #include <utility> #include "base/memory/scoped_refptr.h" #include "extensions/common/extension.h" #include "extensions/common/extension_id.h" class GURL; namespace extensions { class URLPatternSet; // The one true extension container. Extensions are identified by their id. // Only one extension can be in the set with a given ID. class ExtensionSet { … }; } // namespace extensions #endif // EXTENSIONS_COMMON_EXTENSION_SET_H_