chromium/chrome/browser/extensions/shared_module_apitest.cc

// 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.

#include "chrome/browser/extensions/extension_apitest.h"
#include "content/public/test/browser_test.h"
#include "extensions/test/extension_test_message_listener.h"

namespace extensions {

// NB: We use LoadExtension instead of InstallExtension for shared modules so
// the public-keys in their manifests are used to generate the extension ID, so
// it can be imported correctly.  We use InstallExtension otherwise so the loads
// happen through the CRX installer which validates imports.

IN_PROC_BROWSER_TEST_F(ExtensionApiTest, SharedModule) {}

IN_PROC_BROWSER_TEST_F(ExtensionApiTest, SharedModuleAllowlist) {}

IN_PROC_BROWSER_TEST_F(ExtensionApiTest, SharedModuleInstallEvent) {}

IN_PROC_BROWSER_TEST_F(ExtensionApiTest, SharedModuleLocale) {}

}  // namespace extensions