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

Unified Diff: chrome/common/automation_messages_internal.h

Issue 10828245: Final set of conversions of automation calls to the JSON interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 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 | « chrome/browser/automation/testing_automation_provider.cc ('k') | chrome/test/automation/browser_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 81c963c58a564972f8eb984df5d2928074be6945..268b3c1da4546d9d6347f11d9467daeb27a70fde 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -801,7 +801,7 @@ IPC_MESSAGE_CONTROL5(AutomationMsg_GetCookiesHostResponse,
int /* opaque_cookie_id */)
// Return the bookmarks encoded as a JSON string.
-IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_GetBookmarksAsJSON,
+IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_DEPRECATED_GetBookmarksAsJSON,
int /* browser_handle */,
std::string /* bookmarks as a JSON string */,
bool /* success */)
@@ -813,36 +813,36 @@ IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_WaitForBookmarkModelToLoad,
// Bookmark addition, modification, and removal.
// Bookmarks are indexed by their id.
-IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_AddBookmarkGroup,
+IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_DEPRECATED_AddBookmarkGroup,
int /* browser_handle */,
int64 /* parent_id */,
int /* index */,
std::wstring /* title */,
bool /* success */)
-IPC_SYNC_MESSAGE_CONTROL5_1(AutomationMsg_AddBookmarkURL,
+IPC_SYNC_MESSAGE_CONTROL5_1(AutomationMsg_DEPRECATED_AddBookmarkURL,
int /* browser_handle */,
int64 /* parent_id */,
int /* index */,
std::wstring /* title */,
GURL /* url */,
bool /* success */)
-IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_ReparentBookmark,
+IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_DEPRECATED_ReparentBookmark,
int /* browser_handle */,
int64 /* id */,
int64 /* new_parent_id */,
int /* index */,
bool /* success */)
-IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_SetBookmarkTitle,
+IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_DEPRECATED_SetBookmarkTitle,
int /* browser_handle */,
int64 /* id */,
std::wstring /* title */,
bool /* success */)
-IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_SetBookmarkURL,
+IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_DEPRECATED_SetBookmarkURL,
int /* browser_handle */,
int64 /* id */,
GURL /* url */,
bool /* success */)
-IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_RemoveBookmark,
+IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_DEPRECATED_RemoveBookmark,
int /* browser_handle */,
int64 /* id */,
bool /* success */)
« no previous file with comments | « chrome/browser/automation/testing_automation_provider.cc ('k') | chrome/test/automation/browser_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698