diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-02 22:05:25 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-02 22:05:25 +0000 |
commit | 3d9ec505324b7785ca196353b132dc290f97fdc9 (patch) | |
tree | e9994350d5045f3159606ce766ddda099b0fd9c3 /content/ppapi_plugin/broker_process_dispatcher.h | |
parent | 28480cd0f2b38fc7a0e14aa86795215378b12b93 (diff) | |
download | chromium_src-3d9ec505324b7785ca196353b132dc290f97fdc9.zip chromium_src-3d9ec505324b7785ca196353b132dc290f97fdc9.tar.gz chromium_src-3d9ec505324b7785ca196353b132dc290f97fdc9.tar.bz2 |
Rename IPC handlers that are in the form of OnMsgFoo to OnFoo. This is how almost all the handlers are called.
Review URL: https://codereview.chromium.org/11695005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174868 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin/broker_process_dispatcher.h')
-rw-r--r-- | content/ppapi_plugin/broker_process_dispatcher.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/content/ppapi_plugin/broker_process_dispatcher.h b/content/ppapi_plugin/broker_process_dispatcher.h index ae4853a..8200a7f 100644 --- a/content/ppapi_plugin/broker_process_dispatcher.h +++ b/content/ppapi_plugin/broker_process_dispatcher.h @@ -34,26 +34,26 @@ class BrokerProcessDispatcher const ppapi::FlashSiteSettings& sites); private: - void OnMsgGetSitesWithData(uint32 request_id, - const FilePath& plugin_data_path); - void OnMsgClearSiteData(uint32 request_id, - const FilePath& plugin_data_path, - const std::string& site, - uint64 flags, - uint64 max_age); - void OnMsgDeauthorizeContentLicenses(uint32 request_id, - const FilePath& plugin_data_path); - void OnMsgGetPermissionSettings( + void OnGetSitesWithData(uint32 request_id, + const FilePath& plugin_data_path); + void OnClearSiteData(uint32 request_id, + const FilePath& plugin_data_path, + const std::string& site, + uint64 flags, + uint64 max_age); + void OnDeauthorizeContentLicenses(uint32 request_id, + const FilePath& plugin_data_path); + void OnGetPermissionSettings( uint32 request_id, const FilePath& plugin_data_path, PP_Flash_BrowserOperations_SettingType setting_type); - void OnMsgSetDefaultPermission( + void OnSetDefaultPermission( uint32 request_id, const FilePath& plugin_data_path, PP_Flash_BrowserOperations_SettingType setting_type, PP_Flash_BrowserOperations_Permission permission, bool clear_site_specific); - void OnMsgSetSitePermission( + void OnSetSitePermission( uint32 request_id, const FilePath& plugin_data_path, PP_Flash_BrowserOperations_SettingType setting_type, |