// 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 CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ #define CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ #include "base/process/process.h" #include "content/common/content_export.h" #include "content/public/browser/render_view_host.h" #include "ppapi/c/pp_instance.h" #include "url/gurl.h" namespace IPC { class ChannelProxy; class Sender; } namespace ppapi { class PpapiPermissions; namespace host { class PpapiHost; } } namespace content { // Interface that allows components in the embedder app to talk to the // PpapiHost in the browser process. // // There will be one of these objects in the browser per plugin process. It // lives entirely on the I/O thread. class CONTENT_EXPORT BrowserPpapiHost { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_