Index: content/public/browser/browser_ppapi_host.h |
diff --git a/content/public/browser/browser_ppapi_host.h b/content/public/browser/browser_ppapi_host.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..270b0fc53d46f9175a2840f54eac782987b1e0bc |
--- /dev/null |
+++ b/content/public/browser/browser_ppapi_host.h |
@@ -0,0 +1,27 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// 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_ |
+ |
+namespace ppapi { |
+namespace host { |
+class PpapiHost; |
+} |
+} |
+ |
+namespace content { |
+ |
+class BrowserPpapiHost { |
+ public: |
+ // Returns the PpapiHost object. |
+ virtual ppapi::host::PpapiHost* GetPpapiHost() = 0; |
+ |
+ protected: |
+ virtual ~BrowserPpapiHost() {} |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ |