summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/automation_provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/automation/automation_provider.h')
-rw-r--r--chrome/browser/automation/automation_provider.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h
index f693d89..9ff8753 100644
--- a/chrome/browser/automation/automation_provider.h
+++ b/chrome/browser/automation/automation_provider.h
@@ -738,25 +738,25 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>,
// Sets the int value for preference with name |name|.
void SetIntPreference(int handle,
- const std::wstring& name,
+ const std::string& name,
int value,
bool* success);
// Sets the string value for preference with name |name|.
void SetStringPreference(int handle,
- const std::wstring& name,
+ const std::string& name,
const std::string& value,
bool* success);
// Gets the bool value for preference with name |name|.
void GetBooleanPreference(int handle,
- const std::wstring& name,
+ const std::string& name,
bool* success,
bool* value);
// Sets the bool value for preference with name |name|.
void SetBooleanPreference(int handle,
- const std::wstring& name,
+ const std::string& name,
bool value,
bool* success);