| Index: chrome/browser/history/history_types.cc
|
| diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
|
| index ccdd8d12fbfd19c7bda84551a38c2831ed789419..c6484373ce9ad522b9aeaaf26965c0485ffd39ed 100644
|
| --- a/chrome/browser/history/history_types.cc
|
| +++ b/chrome/browser/history/history_types.cc
|
| @@ -8,6 +8,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "base/stl_util.h"
|
| +#include "chrome/browser/history/page_usage_data.h"
|
|
|
| namespace history {
|
|
|
| @@ -327,6 +328,18 @@ MostVisitedURL::MostVisitedURL(const GURL& url,
|
|
|
| MostVisitedURL::~MostVisitedURL() {}
|
|
|
| +// FilteredURL -----------------------------------------------------------------
|
| +
|
| +FilteredURL::FilteredURL() {}
|
| +
|
| +FilteredURL::FilteredURL(const PageUsageData& page_data)
|
| + : url(page_data.GetURL()),
|
| + title(page_data.GetTitle()),
|
| + score(page_data.GetScore()) {
|
| +}
|
| +
|
| +FilteredURL::~FilteredURL() {}
|
| +
|
| // Images ---------------------------------------------------------------------
|
|
|
| Images::Images() {}
|
|
|