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

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

Issue 1007007: PyAuto: Flags to forbid cleaning profile dir... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
Index: chrome/test/pyautolib/pyautolib.i
===================================================================
--- chrome/test/pyautolib/pyautolib.i (revision 41456)
+++ chrome/test/pyautolib/pyautolib.i (working copy)
@@ -79,7 +79,8 @@
class PyUITestSuite {
public:
- PyUITestSuite(int argc, char** argv);
+ PyUITestSuite(int argc, char** argv, bool clear_profile,
+ std::wstring homepage);
%feature("docstring", "Initialize the entire setup. Should be called "
"before launching the browser. For internal use.") Initialize;
@@ -130,12 +131,12 @@
"given or first browser window.") IsDownloadShelfVisible;
bool IsDownloadShelfVisible(int window_index=0);
- %feature("docstring", "Determine if the bookmark bar is visible. "
+ %feature("docstring", "Determine if the bookmark bar is visible. "
"If the NTP is visible, only return true if attached "
- "(to the chrome).") GetBookmarkBarVisibility;
+ "(to the chrome).") GetBookmarkBarVisibility;
bool GetBookmarkBarVisibility();
- %feature("docstring", "Wait for the bookmark bar animation to complete. "
+ %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);

Powered by Google App Engine
This is Rietveld 408576698