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

Unified Diff: webkit/blob/blob_storage_controller_unittest.cc

Issue 6903022: Removed wchar_t from Time::FromString (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed unnecessary blankline. Created 9 years, 5 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: webkit/blob/blob_storage_controller_unittest.cc
diff --git a/webkit/blob/blob_storage_controller_unittest.cc b/webkit/blob/blob_storage_controller_unittest.cc
index 884c18a545996460186106a1d5f8729302f216f7..27beb44cd6acb13f739788fff861eac590f15506 100644
--- a/webkit/blob/blob_storage_controller_unittest.cc
+++ b/webkit/blob/blob_storage_controller_unittest.cc
@@ -18,8 +18,8 @@ namespace webkit_blob {
TEST(BlobStorageControllerTest, RegisterBlobUrl) {
// Setup a set of blob data for testing.
base::Time time1, time2;
- base::Time::FromString(L"Tue, 15 Nov 1994, 12:45:26 GMT", &time1);
- base::Time::FromString(L"Mon, 14 Nov 1994, 11:30:49 GMT", &time2);
+ base::Time::FromString("Tue, 15 Nov 1994, 12:45:26 GMT", &time1);
+ base::Time::FromString("Mon, 14 Nov 1994, 11:30:49 GMT", &time2);
scoped_refptr<BlobData> blob_data1(new BlobData());
blob_data1->AppendData("Data1");
@@ -80,8 +80,8 @@ TEST(BlobStorageControllerTest, RegisterBlobUrl) {
TEST(BlobStorageControllerTest, ResolveBlobReferencesInUploadData) {
// Setup blob data for testing.
base::Time time1, time2;
- base::Time::FromString(L"Tue, 15 Nov 1994, 12:45:26 GMT", &time1);
- base::Time::FromString(L"Mon, 14 Nov 1994, 11:30:49 GMT", &time2);
+ base::Time::FromString("Tue, 15 Nov 1994, 12:45:26 GMT", &time1);
+ base::Time::FromString("Mon, 14 Nov 1994, 11:30:49 GMT", &time2);
scoped_ptr<BlobStorageController> blob_storage_controller(
new BlobStorageController());
« no previous file with comments | « net/http/http_response_headers_unittest.cc ('k') | webkit/fileapi/file_system_dir_url_request_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698