// 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. #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_HOST_FACTORY_H_ #define CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_HOST_FACTORY_H_ #include <memory> class Browser; class GURL; namespace content { class WebContents; } namespace extensions { class ExtensionViewHost; // A utility class to make ExtensionViewHosts for UI views that are backed // by extensions. class ExtensionViewHostFactory { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_HOST_FACTORY_H_