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

Unified Diff: chrome/test/pyautolib/pyautolib.i

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/test/pyautolib/pyautolib.cc ('k') | chrome/test/reliability/automated_ui_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/pyautolib.i
diff --git a/chrome/test/pyautolib/pyautolib.i b/chrome/test/pyautolib/pyautolib.i
index aedc5b6737319a5ce654306bf756d22e5d3c8356..8826a2b3cf321adf0aac92046688332a98da1832 100644
--- a/chrome/test/pyautolib/pyautolib.i
+++ b/chrome/test/pyautolib/pyautolib.i
@@ -175,59 +175,6 @@ class PyUITestBase {
%feature("docstring", "Get the path to profile directory.") user_data_dir;
FilePath user_data_dir() const;
- %feature("docstring", "Determine if the bookmark bar is visible. "
- "If the NTP is visible, only return true if attached "
- "(to the chrome).") GetBookmarkBarVisibility;
- bool GetBookmarkBarVisibility();
-
- %feature("docstring", "Determine if the bookmark bar is detached. "
- "This usually is only true on the NTP.") IsBookmarkBarDetached;
- bool IsBookmarkBarDetached();
-
- %feature("docstring", "Wait for the bookmark bar animation to complete. "
- "|wait_for_open| specifies which kind of change we wait for.")
- WaitForBookmarkBarVisibilityChange;
- bool WaitForBookmarkBarVisibilityChange(bool wait_for_open,
- int window_index=0);
-
- %feature("docstring", "Get the bookmarks as a JSON string. Internal method.")
- _GetBookmarksAsJSON;
- std::string _GetBookmarksAsJSON(int window_index=0);
-
- %feature("docstring", "Add a bookmark folder with the given index in the "
- " parent. |title| is the title/name of the folder.")
- AddBookmarkGroup;
- bool AddBookmarkGroup(std::wstring parent_id,
- int index, std::wstring title,
- int window_index=0);
-
- %feature("docstring", "Add a bookmark with the given title and URL.")
- AddBookmarkURL;
- bool AddBookmarkURL(std::wstring parent_id,
- int index,
- std::wstring title,
- const std::wstring url,
- int window_index=0);
-
- %feature("docstring", "Move a bookmark to a new parent.") ReparentBookmark;
- bool ReparentBookmark(std::wstring id,
- std::wstring new_parent_id,
- int index,
- int window_index=0);
-
- %feature("docstring", "Set the title of a bookmark.") SetBookmarkTitle;
- bool SetBookmarkTitle(std::wstring id,
- std::wstring title,
- int window_index=0);
-
- %feature("docstring", "Set the URL of a bookmark.") SetBookmarkURL;
- bool SetBookmarkURL(std::wstring id,
- const std::wstring url,
- int window_index=0);
-
- %feature("docstring", "Remove (delete) a bookmark.") RemoveBookmark;
- bool RemoveBookmark(std::wstring id, int window_index=0);
-
// Meta-method
%feature("docstring", "Send a sync JSON request to Chrome. "
"Returns a JSON dict as a response. "
« no previous file with comments | « chrome/test/pyautolib/pyautolib.cc ('k') | chrome/test/reliability/automated_ui_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698