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

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

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.h
===================================================================
--- chrome/test/automation/browser_proxy.h (revision 73855)
+++ chrome/test/automation/browser_proxy.h (working copy)
@@ -154,13 +154,13 @@
// Editing of the bookmark model. Bookmarks are referenced by id.
// Bookmark or group (folder) creation:
bool AddBookmarkGroup(int64 parent_id, int index,
- std::wstring& title) WARN_UNUSED_RESULT;
- bool AddBookmarkURL(int64 parent_id, int index,
- std::wstring& title, const GURL& url) WARN_UNUSED_RESULT;
+ const string16& title) WARN_UNUSED_RESULT;
+ bool AddBookmarkURL(int64 parent_id, int index, const string16& title,
+ const GURL& url) WARN_UNUSED_RESULT;
// Bookmark editing:
bool ReparentBookmark(int64 id, int64 new_parent_id,
int index) WARN_UNUSED_RESULT;
- bool SetBookmarkTitle(int64 id, const std::wstring& title) WARN_UNUSED_RESULT;
+ bool SetBookmarkTitle(int64 id, const string16& title) WARN_UNUSED_RESULT;
bool SetBookmarkURL(int64 id, const GURL& url) WARN_UNUSED_RESULT;
// Finally, bookmark deletion:
bool RemoveBookmark(int64 id) WARN_UNUSED_RESULT;

Powered by Google App Engine
This is Rietveld 408576698