| Index: components/bookmarks/managed/managed_bookmarks_tracker.h
|
| diff --git a/components/bookmarks/managed/managed_bookmarks_tracker.h b/components/bookmarks/managed/managed_bookmarks_tracker.h
|
| index 0ff1f38c4bd5f75aa5c25c0f4c0c5bf57de312e3..772ddf97808dc17470d7c21260f629c2c3243dad 100644
|
| --- a/components/bookmarks/managed/managed_bookmarks_tracker.h
|
| +++ b/components/bookmarks/managed/managed_bookmarks_tracker.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_
|
| #define COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/callback_forward.h"
|
| #include "base/macros.h"
|
| #include "base/prefs/pref_change_registrar.h"
|
| @@ -52,9 +54,9 @@ class ManagedBookmarksTracker {
|
| // Loads the initial managed/supervised bookmarks in |list| into |folder|.
|
| // New nodes will be assigned IDs starting at |next_node_id|.
|
| // Returns the next node ID to use.
|
| - static int64 LoadInitial(BookmarkNode* folder,
|
| - const base::ListValue* list,
|
| - int64 next_node_id);
|
| + static int64_t LoadInitial(BookmarkNode* folder,
|
| + const base::ListValue* list,
|
| + int64_t next_node_id);
|
|
|
| // Starts tracking the pref for updates to the managed/supervised bookmarks.
|
| // Should be called after loading the initial bookmarks.
|
|
|