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

Unified Diff: content/ppapi_plugin/broker_process_dispatcher.h

Issue 12208057: Add explicit base to FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months 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
« no previous file with comments | « content/plugin/webplugin_delegate_stub.cc ('k') | content/ppapi_plugin/broker_process_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/plugin/webplugin_delegate_stub.cc ('k') | content/ppapi_plugin/broker_process_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698