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

Unified Diff: chrome/browser/automation/automation_util.h

Issue 6705004: Return the full cookie details in TestingAutomationProvider and pass around (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 9 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 | « no previous file | chrome/browser/automation/automation_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/automation_util.h
diff --git a/chrome/browser/automation/automation_util.h b/chrome/browser/automation/automation_util.h
index bb383446a6f1e0af96a091720d2fbfbac203c286..b49887a430c89f45fdf8858df747ad9b109ec7a3 100644
--- a/chrome/browser/automation/automation_util.h
+++ b/chrome/browser/automation/automation_util.h
@@ -36,33 +36,19 @@ void DeleteCookie(const GURL& url,
bool* success);
// Gets the cookies for the given URL. Uses the JSON interface.
-// Example:
-// input: { "windex": 1, "tab_index": 1, "url": "http://www.google.com" }
-// output: { "cookies": "PREF=12012" }
+// See |TestingAutomationProvider| for example input.
void GetCookiesJSON(AutomationProvider* provider,
DictionaryValue* args,
IPC::Message* reply_message);
// Deletes the cookie with the given name for the URL. Uses the JSON interface.
-// Example:
-// input: { "windex": 1,
-// "tab_index": 1,
-// "url": "http://www.google.com",
-// "name": "my_cookie"
-// }
-// output: none
+// See |TestingAutomationProvider| for example input.
void DeleteCookieJSON(AutomationProvider* provider,
DictionaryValue* args,
IPC::Message* reply_message);
// Sets a cookie for the given URL. Uses the JSON interface.
-// Example:
-// input: { "windex": 1,
-// "tab_index": 1,
-// "url": "http://www.google.com",
-// "cookie": "PREF=21321"
-// }
-// output: none
+// See |TestingAutomationProvider| for example input.
void SetCookieJSON(AutomationProvider* provider,
DictionaryValue* args,
IPC::Message* reply_message);
« no previous file with comments | « no previous file | chrome/browser/automation/automation_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698