| Index: chrome/test/live_sync/live_bookmarks_sync_test.cc
|
| diff --git a/chrome/test/live_sync/live_bookmarks_sync_test.cc b/chrome/test/live_sync/live_bookmarks_sync_test.cc
|
| index 89341814ea3cdaa0aaf618cd1bc1b96c2d4ea7c8..3dd4a505dd6c221bb857a4b26f1be99adbae59fc 100644
|
| --- a/chrome/test/live_sync/live_bookmarks_sync_test.cc
|
| +++ b/chrome/test/live_sync/live_bookmarks_sync_test.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/test/live_sync/live_bookmarks_sync_test.h"
|
|
|
| +#include "base/stringprintf.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/test/ui_test_utils.h"
|
| @@ -263,3 +264,23 @@ std::vector<unsigned char> LiveBookmarksSyncTest::CreateFavicon(int seed) {
|
| gfx::PNGCodec::EncodeBGRASkBitmap(bmp, false, &favicon);
|
| return favicon;
|
| }
|
| +
|
| +std::string LiveBookmarksSyncTest::IndexedURL(int i) {
|
| + return StringPrintf("http://www.host.ext:1234/path/filename/%d", i);
|
| +}
|
| +
|
| +std::wstring LiveBookmarksSyncTest::IndexedURLTitle(int i) {
|
| + return StringPrintf(L"URL Title %d", i);
|
| +}
|
| +
|
| +std::wstring LiveBookmarksSyncTest::IndexedFolderName(int i) {
|
| + return StringPrintf(L"Folder Name %d", i);
|
| +}
|
| +
|
| +std::wstring LiveBookmarksSyncTest::IndexedSubfolderName(int i) {
|
| + return StringPrintf(L"Subfolder Name %d", i);
|
| +}
|
| +
|
| +std::wstring LiveBookmarksSyncTest::IndexedSubsubfolderName(int i) {
|
| + return StringPrintf(L"Subsubfolder Name %d", i);
|
| +}
|
|
|