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

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

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.cc
===================================================================
--- chrome/test/pyautolib/pyautolib.cc (revision 41456)
+++ chrome/test/pyautolib/pyautolib.cc (working copy)
@@ -9,9 +9,12 @@
#include "chrome/test/pyautolib/pyautolib.h"
#include "googleurl/src/gurl.h"
-PyUITestSuite::PyUITestSuite(int argc, char** argv)
+PyUITestSuite::PyUITestSuite(
+ int argc, char** argv, bool clear_profile, std::wstring homepage)
: UITestSuite(argc, argv),
UITestBase() {
+ set_clear_profile(clear_profile);
+ set_homepage(homepage);
}
PyUITestSuite::~PyUITestSuite() {

Powered by Google App Engine
This is Rietveld 408576698