| Index: content/ppapi_plugin/broker_process_dispatcher.h
|
| diff --git a/content/ppapi_plugin/broker_process_dispatcher.h b/content/ppapi_plugin/broker_process_dispatcher.h
|
| index 8200a7f8a203b6d80d81549738482466ca7d982a..dd8c6a6294b1c633ac1430c484c805fc9a97bc04 100644
|
| --- a/content/ppapi_plugin/broker_process_dispatcher.h
|
| +++ b/content/ppapi_plugin/broker_process_dispatcher.h
|
| @@ -35,46 +35,46 @@ class BrokerProcessDispatcher
|
|
|
| private:
|
| void OnGetSitesWithData(uint32 request_id,
|
| - const FilePath& plugin_data_path);
|
| + const base::FilePath& plugin_data_path);
|
| void OnClearSiteData(uint32 request_id,
|
| - const FilePath& plugin_data_path,
|
| + const base::FilePath& plugin_data_path,
|
| const std::string& site,
|
| uint64 flags,
|
| uint64 max_age);
|
| void OnDeauthorizeContentLicenses(uint32 request_id,
|
| - const FilePath& plugin_data_path);
|
| + const base::FilePath& plugin_data_path);
|
| void OnGetPermissionSettings(
|
| uint32 request_id,
|
| - const FilePath& plugin_data_path,
|
| + const base::FilePath& plugin_data_path,
|
| PP_Flash_BrowserOperations_SettingType setting_type);
|
| void OnSetDefaultPermission(
|
| uint32 request_id,
|
| - const FilePath& plugin_data_path,
|
| + const base::FilePath& plugin_data_path,
|
| PP_Flash_BrowserOperations_SettingType setting_type,
|
| PP_Flash_BrowserOperations_Permission permission,
|
| bool clear_site_specific);
|
| void OnSetSitePermission(
|
| uint32 request_id,
|
| - const FilePath& plugin_data_path,
|
| + const base::FilePath& plugin_data_path,
|
| PP_Flash_BrowserOperations_SettingType setting_type,
|
| const ppapi::FlashSiteSettings& sites);
|
|
|
| // Returns a list of sites that have data stored.
|
| - void GetSitesWithData(const FilePath& plugin_data_path,
|
| + void GetSitesWithData(const base::FilePath& plugin_data_path,
|
| std::vector<std::string>* sites);
|
|
|
| // Requests that the plugin clear data, returning true on success.
|
| - bool ClearSiteData(const FilePath& plugin_data_path,
|
| + bool ClearSiteData(const base::FilePath& plugin_data_path,
|
| const std::string& site,
|
| uint64 flags,
|
| uint64 max_age);
|
|
|
| - bool DeauthorizeContentLicenses(const FilePath& plugin_data_path);
|
| - bool SetDefaultPermission(const FilePath& plugin_data_path,
|
| + bool DeauthorizeContentLicenses(const base::FilePath& plugin_data_path);
|
| + bool SetDefaultPermission(const base::FilePath& plugin_data_path,
|
| PP_Flash_BrowserOperations_SettingType setting_type,
|
| PP_Flash_BrowserOperations_Permission permission,
|
| bool clear_site_specific);
|
| - bool SetSitePermission(const FilePath& plugin_data_path,
|
| + bool SetSitePermission(const base::FilePath& plugin_data_path,
|
| PP_Flash_BrowserOperations_SettingType setting_type,
|
| const ppapi::FlashSiteSettings& sites);
|
|
|
|
|