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

Unified Diff: chrome/browser/history/history_types.cc

Issue 3806005: FBTF: More ctor/dtor cleanup. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 months 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
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/top_sites.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/top_sites.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698