Index: chrome/browser/history/history_types.h |
diff --git a/chrome/browser/history/history_types.h b/chrome/browser/history/history_types.h |
index bc28dd133702755d78097e43e0ffca8f7681410d..76359fc587718ad7c7f46ac5a382202fcdb37570 100644 |
--- a/chrome/browser/history/history_types.h |
+++ b/chrome/browser/history/history_types.h |
@@ -18,6 +18,7 @@ |
#include "base/string16.h" |
#include "base/time.h" |
#include "chrome/browser/history/snippet.h" |
+#include "chrome/browser/search_engines/template_url_id.h" |
#include "chrome/common/page_transition_types.h" |
#include "chrome/common/ref_counted_util.h" |
#include "chrome/common/thumbnail_score.h" |
@@ -523,6 +524,23 @@ struct KeywordSearchTermVisit { |
string16 term; |
}; |
+// KeywordSearchTermRow -------------------------------------------------------- |
+ |
+// Used for URLs that have a search term associated with them. |
+struct KeywordSearchTermRow { |
+ KeywordSearchTermRow(); |
+ ~KeywordSearchTermRow(); |
+ |
+ // ID of the keyword. |
+ TemplateURLID keyword_id; |
+ |
+ // ID of the url. |
+ URLID url_id; |
+ |
+ // The search term that was used. |
+ string16 term; |
+}; |
+ |
// MostVisitedURL -------------------------------------------------------------- |
// Holds the per-URL information of the most visited query. |