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

Unified Diff: sync/test/fake_server/unique_client_entity.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/tombstone_entity.cc ('k') | sync/test/fake_server/unique_client_entity.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/fake_server/unique_client_entity.h
diff --git a/sync/test/fake_server/unique_client_entity.h b/sync/test/fake_server/unique_client_entity.h
index 0a5a855b88cccd05eacad694734ddc47cfd9f993..a450eeb859ece3b44de53f5de26623aacbd76c46 100644
--- a/sync/test/fake_server/unique_client_entity.h
+++ b/sync/test/fake_server/unique_client_entity.h
@@ -5,9 +5,10 @@
#ifndef SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_
#define SYNC_TEST_FAKE_SERVER_UNIQUE_CLIENT_ENTITY_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "sync/internal_api/public/base/model_type.h"
#include "sync/test/fake_server/fake_server_entity.h"
@@ -28,12 +29,12 @@ class UniqueClientEntity : public FakeServerEntity {
public:
UniqueClientEntity(const std::string& id,
syncer::ModelType model_type,
- int64 version,
+ int64_t version,
const std::string& name,
const std::string& client_defined_unique_tag,
const sync_pb::EntitySpecifics& specifics,
- int64 creation_time,
- int64 last_modified_time);
+ int64_t creation_time,
+ int64_t last_modified_time);
~UniqueClientEntity() override;
@@ -59,8 +60,8 @@ class UniqueClientEntity : public FakeServerEntity {
private:
// These member values have equivalent fields in SyncEntity.
std::string client_defined_unique_tag_;
- int64 creation_time_;
- int64 last_modified_time_;
+ int64_t creation_time_;
+ int64_t last_modified_time_;
};
} // namespace fake_server
« no previous file with comments | « sync/test/fake_server/tombstone_entity.cc ('k') | sync/test/fake_server/unique_client_entity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698