diff options
author | alyssad@chromium.org <alyssad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 20:51:57 +0000 |
---|---|---|
committer | alyssad@chromium.org <alyssad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 20:51:57 +0000 |
commit | 5bcfe167fdaae9e5de58ef0892c77793d66d7ac1 (patch) | |
tree | 008b00fbe793927314262e64b6a3a453e9519dc2 /chrome/browser/automation/automation_provider.h | |
parent | 66758a6fc9621d32bc556b07e3503e0c14cf0468 (diff) | |
download | chromium_src-5bcfe167fdaae9e5de58ef0892c77793d66d7ac1.zip chromium_src-5bcfe167fdaae9e5de58ef0892c77793d66d7ac1.tar.gz chromium_src-5bcfe167fdaae9e5de58ef0892c77793d66d7ac1.tar.bz2 |
New PyAuto hook to get saved passwords. BUG=36179
Review URL: http://codereview.chromium.org/2842047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52745 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider.h')
-rw-r--r-- | chrome/browser/automation/automation_provider.h | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index 78aa363..cb09280 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -442,6 +442,24 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>, DictionaryValue* args, IPC::Message* reply_message); + // Import the given settings from the given browser. + // Uses the JSON interface for input/output. + void ImportSettings(Browser* browser, + DictionaryValue* args, + IPC::Message* reply_message); + + // Add a new username-password combination to the saved passwords. + // Uses the JSON interface for input/output. + void AddSavedPassword(Browser* browser, + DictionaryValue* args, + IPC::Message* reply_message); + + // Return the saved username/password combinations. + // Uses the JSON interface for input/output. + void GetSavedPasswords(Browser* browser, + DictionaryValue* args, + IPC::Message* reply_message); + // Clear the specified browsing data. This call provides similar // functionality to RemoveBrowsingData but is synchronous. // Uses the JSON interface for input/output. @@ -461,12 +479,6 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>, DictionaryValue* args, IPC::Message* reply_message); - // Import the given settings from the given browser. - // Uses the JSON interface for input/output. - void ImportSettings(Browser* browser, - DictionaryValue* args, - IPC::Message* reply_message); - // Fill in an AutoFillProfile with the given profile information. // Uses the JSON interface for input/output. void FillAutoFillProfile(Browser* browser, |