Chromium Code Reviews| Index: content/browser/web_contents/web_contents_impl.h |
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h |
| index ac27895ee08215ea29dbfea498c1771beee607b6..efece622fddf019065264c0a11b51b7209a38394 100644 |
| --- a/content/browser/web_contents/web_contents_impl.h |
| +++ b/content/browser/web_contents/web_contents_impl.h |
| @@ -470,6 +470,9 @@ class CONTENT_EXPORT WebContentsImpl |
| bool success, |
| const string16& user_input); |
| + // Callback function when requesting permission to access the PPAPI broker. |
|
ddorwin
2012/08/12 22:51:16
Maybe explain the meaning of |result|. Or use an e
Bernhard Bauer
2012/08/13 09:02:11
Done.
|
| + void OnPpapiBrokerPermissionResult(int request_id, bool result); |
| + |
| // IPC message handlers. |
| void OnRegisterIntentService(const webkit_glue::WebIntentServiceData& data, |
| bool user_gesture); |
| @@ -519,6 +522,9 @@ class CONTENT_EXPORT WebContentsImpl |
| void OnWebUISend(const GURL& source_url, |
| const std::string& name, |
| const base::ListValue& args); |
| + void OnRequestPpapiBrokerPermission(int request_id, |
| + const GURL& url, |
| + const FilePath& plugin_path); |
| // Changes the IsLoading state and notifies delegate as needed |
| // |details| is used to provide details on the load that just finished |