Chromium Code Reviews| Index: chrome/test/live_sync/two_client_live_bookmarks_sync_test.cc |
| diff --git a/chrome/test/live_sync/two_client_live_bookmarks_sync_test.cc b/chrome/test/live_sync/two_client_live_bookmarks_sync_test.cc |
| index 29b105b40e6d04901e83847b158f863b7ee393b2..79596915cff2e01ed009c282f187742f30b0c265 100644 |
| --- a/chrome/test/live_sync/two_client_live_bookmarks_sync_test.cc |
| +++ b/chrome/test/live_sync/two_client_live_bookmarks_sync_test.cc |
| @@ -3,7 +3,6 @@ |
| // found in the LICENSE file. |
| #include "base/rand_util.h" |
| -#include "base/stringprintf.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/sync/profile_sync_service_harness.h" |
| #include "chrome/test/live_sync/live_bookmarks_sync_test.h" |
| @@ -14,34 +13,10 @@ const std::wstring kGenericFolderName = L"Folder Name"; |
| const std::wstring kGenericSubfolderName = L"Subfolder Name"; |
| const std::wstring kGenericSubsubfolderName = L"Subsubfolder Name"; |
| -static std::string IndexedURL(int i) { |
| - return StringPrintf("http://www.host.ext:1234/path/filename/%d", i); |
| -} |
| - |
| -static std::wstring IndexedURLTitle(int i) { |
| - return StringPrintf(L"URL Title %d", i); |
| -} |
| - |
| -static std::wstring IndexedFolderName(int i) { |
| - return StringPrintf(L"Folder Name %d", i); |
| -} |
| - |
| -static std::wstring IndexedSubfolderName(int i) { |
| - return StringPrintf(L"Subfolder Name %d", i); |
| -} |
| - |
| -static std::wstring IndexedSubsubfolderName(int i) { |
| - return StringPrintf(L"Subsubfolder Name %d", i); |
| -} |
| - |
| const std::vector<unsigned char> GenericFavicon() { |
| return LiveBookmarksSyncTest::CreateFavicon(254); |
| } |
|
Raghu Simha
2011/06/16 22:42:55
This method could move to LiveBookmarksSyncTest to
braffert
2011/06/17 18:19:46
It could, but since this function simply generates
|
| -const std::vector<unsigned char> IndexedFavicon(int i) { |
| - return LiveBookmarksSyncTest::CreateFavicon(i); |
| -} |
| - |
| // http://crbug.com/81256 |
| IN_PROC_BROWSER_TEST_F(TwoClientLiveBookmarksSyncTest, FLAKY_Sanity) { |
| ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; |