Index: chrome/browser/history/history_types.h |
diff --git a/chrome/browser/history/history_types.h b/chrome/browser/history/history_types.h |
index a7eb39e9e38197d0c312abf049dcca210fb7fa6e..e84101d1946fe0d2880d0713fcda9ae75cb7cd93 100644 |
--- a/chrome/browser/history/history_types.h |
+++ b/chrome/browser/history/history_types.h |
@@ -46,6 +46,9 @@ typedef int64 FaviconBitmapID; // Identifier for a bitmap in a favicon. |
typedef int64 SegmentID; // URL segments for the most visited view. |
typedef int64 IconMappingID; // For page url and icon mapping. |
+// Identifier for a context to scope page ids. |
+typedef const void* ContextID; |
+ |
// URLRow --------------------------------------------------------------------- |
typedef int64 URLID; |
@@ -568,7 +571,7 @@ struct HistoryAddPageArgs { |
HistoryAddPageArgs(); |
HistoryAddPageArgs(const GURL& url, |
base::Time time, |
- const void* id_scope, |
+ ContextID context_id, |
int32 page_id, |
const GURL& referrer, |
const history::RedirectList& redirects, |
@@ -580,7 +583,7 @@ struct HistoryAddPageArgs { |
GURL url; |
base::Time time; |
- const void* id_scope; |
+ ContextID context_id; |
int32 page_id; |
GURL referrer; |