| Index: components/bookmarks/browser/bookmark_node_data.h
|
| diff --git a/components/bookmarks/browser/bookmark_node_data.h b/components/bookmarks/browser/bookmark_node_data.h
|
| index 2045e6c17d6dee0132ad8f8a7bf42c2b04c5ae1b..34e940544ae4e10097dc61bf499b76691c093855 100644
|
| --- a/components/bookmarks/browser/bookmark_node_data.h
|
| +++ b/components/bookmarks/browser/bookmark_node_data.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_
|
| #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| #include "base/files/file_path.h"
|
| @@ -79,7 +82,7 @@ struct BookmarkNodeData {
|
| // Meta info for the bookmark node.
|
| BookmarkNode::MetaInfoMap meta_info_map;
|
|
|
| - int64 id() const { return id_; }
|
| + int64_t id() const { return id_; }
|
|
|
| private:
|
| friend struct BookmarkNodeData;
|
| @@ -89,7 +92,7 @@ struct BookmarkNodeData {
|
| bool ReadFromPickle(base::PickleIterator* iterator);
|
|
|
| // ID of the node.
|
| - int64 id_;
|
| + int64_t id_;
|
| };
|
|
|
| // The MIME type for the clipboard format for BookmarkNodeData.
|
|
|