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

Unified Diff: trunk/src/google_apis/drive/gdata_wapi_parser_unittest.cc

Issue 227743006: Revert 262147 "Remove all uses of GG_LONGLONG and GG_ULONGLONG." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 8 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: trunk/src/google_apis/drive/gdata_wapi_parser_unittest.cc
===================================================================
--- trunk/src/google_apis/drive/gdata_wapi_parser_unittest.cc (revision 262163)
+++ trunk/src/google_apis/drive/gdata_wapi_parser_unittest.cc (working copy)
@@ -248,8 +248,8 @@
scoped_ptr<AccountMetadata> metadata(
AccountMetadata::CreateFrom(*document));
ASSERT_TRUE(metadata.get());
- EXPECT_EQ(6789012345LL, metadata->quota_bytes_used());
- EXPECT_EQ(9876543210LL, metadata->quota_bytes_total());
+ EXPECT_EQ(GG_LONGLONG(6789012345), metadata->quota_bytes_used());
+ EXPECT_EQ(GG_LONGLONG(9876543210), metadata->quota_bytes_total());
EXPECT_EQ(654321, metadata->largest_changestamp());
EXPECT_EQ(2U, metadata->installed_apps().size());
const InstalledApp* first_app = metadata->installed_apps()[0];
« no previous file with comments | « trunk/src/content/browser/speech/google_streaming_remote_engine.cc ('k') | trunk/src/media/filters/chunk_demuxer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698