OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ |
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 IPC::ChannelProxy* channel, | 54 IPC::ChannelProxy* channel, |
55 int render_process_id, | 55 int render_process_id, |
56 int render_view_id, | 56 int render_view_id, |
57 const base::FilePath& profile_directory); | 57 const base::FilePath& profile_directory); |
58 | 58 |
59 virtual ~BrowserPpapiHost() {} | 59 virtual ~BrowserPpapiHost() {} |
60 | 60 |
61 // Returns the PpapiHost object. | 61 // Returns the PpapiHost object. |
62 virtual ppapi::host::PpapiHost* GetPpapiHost() = 0; | 62 virtual ppapi::host::PpapiHost* GetPpapiHost() = 0; |
63 | 63 |
64 // Returns the handle to the plugin process. | 64 // Returns a reference to the plugin process. |
65 virtual base::ProcessHandle GetPluginProcessHandle() const = 0; | 65 virtual const base::Process& GetPluginProcess() const = 0; |
66 | 66 |
67 // Returns true if the given PP_Instance is valid. | 67 // Returns true if the given PP_Instance is valid. |
68 virtual bool IsValidInstance(PP_Instance instance) const = 0; | 68 virtual bool IsValidInstance(PP_Instance instance) const = 0; |
69 | 69 |
70 // Retrieves the process/frame Ids associated with the RenderFrame containing | 70 // Retrieves the process/frame Ids associated with the RenderFrame containing |
71 // the given instance and returns true on success. If the instance is | 71 // the given instance and returns true on success. If the instance is |
72 // invalid, the ids will be 0 and false will be returned. | 72 // invalid, the ids will be 0 and false will be returned. |
73 // | 73 // |
74 // When a resource is created, the PP_Instance should already have been | 74 // When a resource is created, the PP_Instance should already have been |
75 // validated, and the resource hosts will be deleted when the resource is | 75 // validated, and the resource hosts will be deleted when the resource is |
(...skipping 18 matching lines...) Expand all Loading... |
94 virtual GURL GetPluginURLForInstance(PP_Instance instance) = 0; | 94 virtual GURL GetPluginURLForInstance(PP_Instance instance) = 0; |
95 | 95 |
96 // Sets a callback the BrowserPpapiHost will run when the plugin messages | 96 // Sets a callback the BrowserPpapiHost will run when the plugin messages |
97 // that it is active. | 97 // that it is active. |
98 virtual void SetOnKeepaliveCallback(const OnKeepaliveCallback& callback) = 0; | 98 virtual void SetOnKeepaliveCallback(const OnKeepaliveCallback& callback) = 0; |
99 }; | 99 }; |
100 | 100 |
101 } // namespace content | 101 } // namespace content |
102 | 102 |
103 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ | 103 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PPAPI_HOST_H_ |
OLD | NEW |