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

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

Issue 6312154: Remove wstring from RVH's run Javascript command.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 73805)
+++ chrome/test/pyautolib/pyautolib.i (working copy)
@@ -14,7 +14,7 @@
// and attach it to your node (class or method). This doc string will be
// copied over in the generated python classes/methods.
-%module(docstring="Python interface to Automtion Proxy.") pyautolib
+%module(docstring="Python interface to Automation Proxy.") pyautolib
%feature("autodoc", "1");
%include <std_wstring.i>
@@ -152,7 +152,7 @@
%feature("docstring", "Supply authentication to a login prompt. "
"Blocks until navigation completes or another login prompt appears "
"in the case of failed auth.") SetAuth;
- bool SetAuth(const std::wstring& username, const std::wstring& password);
+ bool SetAuth(const string16& username, const string16& password);
%feature("docstring", "Cancel authentication to a login prompt. ")
CancelAuth;
bool CancelAuth();

Powered by Google App Engine
This is Rietveld 408576698