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

Unified Diff: net/http/http_response_headers_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
« no previous file with comments | « net/http/http_response_headers.cc ('k') | webkit/blob/blob_storage_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_headers_unittest.cc
diff --git a/net/http/http_response_headers_unittest.cc b/net/http/http_response_headers_unittest.cc
index 483667c7b2a81a3297acfe69905c7fbece3054d6..4848510ccc5605addcb3b5c2c579cd2129c7eada 100644
--- a/net/http/http_response_headers_unittest.cc
+++ b/net/http/http_response_headers_unittest.cc
@@ -812,9 +812,9 @@ TEST(HttpResponseHeadersTest, RequiresValidation) {
// TODO(darin): add many many more tests here
};
base::Time request_time, response_time, current_time;
- base::Time::FromString(L"Wed, 28 Nov 2007 00:40:09 GMT", &request_time);
- base::Time::FromString(L"Wed, 28 Nov 2007 00:40:12 GMT", &response_time);
- base::Time::FromString(L"Wed, 28 Nov 2007 00:45:20 GMT", &current_time);
+ base::Time::FromString("Wed, 28 Nov 2007 00:40:09 GMT", &request_time);
+ base::Time::FromString("Wed, 28 Nov 2007 00:40:12 GMT", &response_time);
+ base::Time::FromString("Wed, 28 Nov 2007 00:45:20 GMT", &current_time);
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
std::string headers(tests[i].headers);
« no previous file with comments | « net/http/http_response_headers.cc ('k') | webkit/blob/blob_storage_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698