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

Unified Diff: sync/test/fake_server/entity_builder_factory.h

Issue 1545553003: Switch to standard integer types in sync/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « sync/test/fake_server/bookmark_entity_builder.cc ('k') | sync/test/fake_server/fake_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/fake_server/entity_builder_factory.h
diff --git a/sync/test/fake_server/entity_builder_factory.h b/sync/test/fake_server/entity_builder_factory.h
index 07d7a57f77b9211dca56cf924d62f575cfbd9705..ff86cda32cf0971d0f772fd64239be394f7c6820 100644
--- a/sync/test/fake_server/entity_builder_factory.h
+++ b/sync/test/fake_server/entity_builder_factory.h
@@ -5,6 +5,8 @@
#ifndef SYNC_TEST_FAKE_SERVER_ENTITY_BUILDER_FACTORY_H_
#define SYNC_TEST_FAKE_SERVER_ENTITY_BUILDER_FACTORY_H_
+#include <stdint.h>
+
#include <string>
#include "sync/test/fake_server/bookmark_entity_builder.h"
@@ -34,7 +36,7 @@ class EntityBuilderFactory {
std::string cache_guid_;
// The latest client item id assigned to an entity.
- int64 latest_client_item_id_;
+ int64_t latest_client_item_id_;
};
} // namespace fake_server
« no previous file with comments | « sync/test/fake_server/bookmark_entity_builder.cc ('k') | sync/test/fake_server/fake_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698