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

Unified Diff: sync/test/null_directory_change_delegate.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/mock_invalidation_tracker.cc ('k') | sync/test/null_directory_change_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/null_directory_change_delegate.h
diff --git a/sync/test/null_directory_change_delegate.h b/sync/test/null_directory_change_delegate.h
index 4c52f3cdbf55d01a1636a531721ed66ddda9717e..4a2799e9a6ca2f1280648977c943fb4024b4551e 100644
--- a/sync/test/null_directory_change_delegate.h
+++ b/sync/test/null_directory_change_delegate.h
@@ -5,6 +5,8 @@
#ifndef SYNC_TEST_NULL_DIRECTORY_CHANGE_DELEGATE_H_
#define SYNC_TEST_NULL_DIRECTORY_CHANGE_DELEGATE_H_
+#include <stdint.h>
+
#include <vector>
#include "base/compiler_specific.h"
@@ -21,11 +23,11 @@ class NullDirectoryChangeDelegate : public DirectoryChangeDelegate {
void HandleCalculateChangesChangeEventFromSyncApi(
const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans,
- std::vector<int64>* entries_changed) override;
+ std::vector<int64_t>* entries_changed) override;
void HandleCalculateChangesChangeEventFromSyncer(
const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans,
- std::vector<int64>* entries_changed) override;
+ std::vector<int64_t>* entries_changed) override;
ModelTypeSet HandleTransactionEndingChangeEvent(
const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans) override;
« no previous file with comments | « sync/test/mock_invalidation_tracker.cc ('k') | sync/test/null_directory_change_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698