Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2018)

Unified Diff: content/public/browser/browser_ppapi_host.h

Issue 725353003: Don't pass ProcessHandle through ChildProcessHostDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
index 81b78b6914191cbde200832919119a158ec9f85f..ef467d6825c20141e4203c87b0f0e1ddd56db39e 100644
--- a/content/public/browser/browser_ppapi_host.h
+++ b/content/public/browser/browser_ppapi_host.h
@@ -61,8 +61,8 @@ class CONTENT_EXPORT BrowserPpapiHost {
// Returns the PpapiHost object.
virtual ppapi::host::PpapiHost* GetPpapiHost() = 0;
- // Returns the handle to the plugin process.
- virtual base::ProcessHandle GetPluginProcessHandle() const = 0;
+ // Returns a refernce to the plugin process.
jam 2014/11/18 19:12:26 nit: spelling
rvargas (doing something else) 2014/11/18 19:27:48 I'll fix it before landing.
+ virtual const base::Process& GetPluginProcess() const = 0;
// Returns true if the given PP_Instance is valid.
virtual bool IsValidInstance(PP_Instance instance) const = 0;

Powered by Google App Engine
This is Rietveld 408576698