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

Unified Diff: chrome/test/automation/browser_proxy.cc

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/automation/browser_proxy.cc
===================================================================
--- chrome/test/automation/browser_proxy.cc (revision 73855)
+++ chrome/test/automation/browser_proxy.cc (working copy)
@@ -307,7 +307,7 @@
}
bool BrowserProxy::AddBookmarkGroup(int64 parent_id, int index,
- std::wstring& title) {
+ const string16& title) {
if (!is_valid())
return false;
bool result = false;
@@ -319,7 +319,7 @@
}
bool BrowserProxy::AddBookmarkURL(int64 parent_id, int index,
- std::wstring& title, const GURL& url) {
+ const string16& title, const GURL& url) {
if (!is_valid())
return false;
bool result = false;
@@ -341,7 +341,7 @@
return result;
}
-bool BrowserProxy::SetBookmarkTitle(int64 id, const std::wstring& title) {
+bool BrowserProxy::SetBookmarkTitle(int64 id, const string16& title) {
if (!is_valid())
return false;
bool result = false;

Powered by Google App Engine
This is Rietveld 408576698