| Index: chrome/browser/history/history_types.cc
|
| diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
|
| index 45911305c6839e8e0d7bddb9bcbeb763e5c45988..408bb93c205f873fbb2ce9eb6907cae5818e4781 100644
|
| --- a/chrome/browser/history/history_types.cc
|
| +++ b/chrome/browser/history/history_types.cc
|
| @@ -311,19 +311,29 @@ void QueryOptions::SetRecentDayRange(int days_ago) {
|
|
|
| // KeywordSearchTermVisit -----------------------------------------------------
|
|
|
| -KeywordSearchTermVisit::KeywordSearchTermVisit() {
|
| -}
|
| +KeywordSearchTermVisit::KeywordSearchTermVisit() {}
|
| +
|
| +KeywordSearchTermVisit::~KeywordSearchTermVisit() {}
|
| +
|
| +// MostVisitedURL --------------------------------------------------------------
|
| +
|
| +MostVisitedURL::MostVisitedURL() {}
|
|
|
| -KeywordSearchTermVisit::~KeywordSearchTermVisit() {
|
| +MostVisitedURL::MostVisitedURL(const GURL& in_url,
|
| + const GURL& in_favicon_url,
|
| + const string16& in_title)
|
| + : url(in_url),
|
| + favicon_url(in_favicon_url),
|
| + title(in_title) {
|
| }
|
|
|
| +MostVisitedURL::~MostVisitedURL() {}
|
| +
|
| // Images ---------------------------------------------------------------------
|
|
|
| -Images::Images() {
|
| -}
|
| +Images::Images() {}
|
|
|
| -Images::~Images() {
|
| -}
|
| +Images::~Images() {}
|
|
|
| // HistoryAddPageArgs ---------------------------------------------------------
|
|
|
| @@ -348,8 +358,7 @@ HistoryAddPageArgs::HistoryAddPageArgs(
|
| did_replace_entry(arg_did_replace_entry) {
|
| }
|
|
|
| -HistoryAddPageArgs::~HistoryAddPageArgs() {
|
| -}
|
| +HistoryAddPageArgs::~HistoryAddPageArgs() {}
|
|
|
| HistoryAddPageArgs* HistoryAddPageArgs::Clone() const {
|
| return new HistoryAddPageArgs(
|
|
|