// Copyright 2015 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_RENDERER_EXTENSION_INJECTION_HOST_H_ #define EXTENSIONS_RENDERER_EXTENSION_INJECTION_HOST_H_ #include "base/memory/raw_ptr.h" #include "extensions/common/extension.h" #include "extensions/common/extension_id.h" #include "extensions/renderer/injection_host.h" namespace extensions { // A wrapper class that holds an extension and implements the InjectionHost // interface. class ExtensionInjectionHost : public InjectionHost { … }; } // namespace extesions #endif // EXTENSIONS_RENDERER_EXTENSION_INJECTION_HOST_H_