// 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_EXTENSION_CREATOR_H_ #define EXTENSIONS_BROWSER_EXTENSION_CREATOR_H_ #include <stdint.h> #include <memory> #include <optional> #include <string> #include <vector> namespace base { class FilePath; } namespace crypto { class RSAPrivateKey; } namespace extensions { // This class create an installable extension (.crx file) given an input // directory that contains a valid manifest.json and the extension's resources // contained within that directory. The output .crx file is always signed with a // private key that is either provided in |private_key_path| or is internal // generated randomly (and optionally written to |output_private_key_path|. class ExtensionCreator { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_EXTENSION_CREATOR_H_