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

Unified Diff: components/history/core/browser/delete_directive_handler.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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/history/core/browser/delete_directive_handler.h
diff --git a/components/history/core/browser/delete_directive_handler.h b/components/history/core/browser/delete_directive_handler.h
index a3bed599f2776b3f7fd0a4502293f9a4b2448c10..0795c1268692bdd76613e6f0b2484240b7495403 100644
--- a/components/history/core/browser/delete_directive_handler.h
+++ b/components/history/core/browser/delete_directive_handler.h
@@ -5,6 +5,9 @@
#ifndef COMPONENTS_HISTORY_CORE_BROWSER_DELETE_DIRECTIVE_HANDLER_H_
#define COMPONENTS_HISTORY_CORE_BROWSER_DELETE_DIRECTIVE_HANDLER_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/cancelable_task_tracker.h"
@@ -37,7 +40,7 @@ class DeleteDirectiveHandler {
// Create delete directives for the deletion of visits identified by
// |global_ids| (which may be empty), in the time range specified by
// |begin_time| and |end_time|.
- bool CreateDeleteDirectives(const std::set<int64>& global_ids,
+ bool CreateDeleteDirectives(const std::set<int64_t>& global_ids,
base::Time begin_time,
base::Time end_time);

Powered by Google App Engine
This is Rietveld 408576698