// Copyright 2014 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_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ #define EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ #include <memory> #include "base/compiler_specific.h" #include "content/public/renderer/content_renderer_client.h" namespace blink { class WebURL; } // namespace blink namespace extensions { class ExtensionsClient; class ShellExtensionsRendererClient; // Renderer initialization and runtime support for app_shell. class ShellContentRendererClient : public content::ContentRendererClient { … }; } // namespace extensions #endif // EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_