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

Unified Diff: chrome/common/automation_messages_internal.h

Issue 5254005: Do not reset the content settings delegate's cookies when a network error occurred. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/tab_contents
Patch Set: updates Created 10 years, 1 month 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 | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/test/automation/tab_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/automation_messages_internal.h
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h
index e2198a13c100f577bf0a1aefef40acdf76ef1f45..90466826bf2e6b758d1df5ecc5902cd5e121a4a5 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -1397,6 +1397,22 @@ IPC_BEGIN_MESSAGES(Automation)
int /* tab handle */,
bool /* result */)
+ // This message requests information about whether the given content type was
+ // blocked in the tab identifier by the first parameter.
+ IPC_SYNC_MESSAGE_ROUTED2_2(AutomationMsg_IsContentBlocked,
Paweł Hajdan Jr. 2010/11/25 17:59:41 Always add new automation messages at the end of t
+ int /* tab handle */,
+ ContentSettingsType /* content type */,
+ bool /* is blocked */,
+ bool /* request successful */)
+
+ // This message requests information about whether the given content type was
+ // accessed in the tab identifier by the first parameter.
+ IPC_SYNC_MESSAGE_ROUTED2_2(AutomationMsg_IsContentAccessed,
+ int /* tab handle */,
+ ContentSettingsType /* content type */,
+ bool /* is accessed */,
+ bool /* request successful */)
+
// This message triggers the collected cookies dialog for a specific tab.
IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_ShowCollectedCookiesDialog,
int /* tab handle */,
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/test/automation/tab_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698