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

Unified Diff: components/bookmarks/managed/managed_bookmarks_tracker.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (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
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.
« no previous file with comments | « components/bookmarks/managed/managed_bookmark_service.cc ('k') | components/bookmarks/managed/managed_bookmarks_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698