| Index: components/history/core/browser/typed_url_syncable_service.h
|
| diff --git a/components/history/core/browser/typed_url_syncable_service.h b/components/history/core/browser/typed_url_syncable_service.h
|
| index da396dc6bd9f3ffd4b504515e0ce9f42d04f49b7..db1f575c0c7cf01aa2efb933bc9653b351fea647 100644
|
| --- a/components/history/core/browser/typed_url_syncable_service.h
|
| +++ b/components/history/core/browser/typed_url_syncable_service.h
|
| @@ -5,9 +5,12 @@
|
| #ifndef COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_
|
| #define COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <set>
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| #include "base/scoped_observer.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "components/history/core/browser/history_backend_observer.h"
|
| @@ -95,7 +98,7 @@ class TypedUrlSyncableService : public syncer::SyncableService,
|
| typedef std::map<GURL, VisitVector> UrlVisitVectorMap;
|
|
|
| // Bitfield returned from MergeUrls to specify the result of a merge.
|
| - typedef uint32 MergeResult;
|
| + typedef uint32_t MergeResult;
|
| static const MergeResult DIFF_NONE = 0;
|
| static const MergeResult DIFF_UPDATE_NODE = 1 << 0;
|
| static const MergeResult DIFF_LOCAL_ROW_CHANGED = 1 << 1;
|
|
|