// 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. #include "extensions/browser/extension_creator_filter.h" #include <stddef.h> #include <algorithm> #include <vector> #include "base/containers/contains.h" #include "build/build_config.h" #include "extensions/common/constants.h" #if BUILDFLAG(IS_WIN) #include <windows.h> #endif namespace extensions { ExtensionCreatorFilter::ExtensionCreatorFilter( const base::FilePath& extension_dir) : … { … } bool ExtensionCreatorFilter::ShouldPackageFile( const base::FilePath& file_path) { … } } // namespace extensions