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

Unified Diff: components/history/core/browser/typed_url_sync_bridge_unittest.cc

Issue 2926553004: Remove trailing semicolon at the end of a method definition (Closed)
Patch Set: rebase Created 3 years, 6 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
Index: components/history/core/browser/typed_url_sync_bridge_unittest.cc
diff --git a/components/history/core/browser/typed_url_sync_bridge_unittest.cc b/components/history/core/browser/typed_url_sync_bridge_unittest.cc
index 2453270ed3a87c2389f59ff67cb87ebe773cc6da..be2a855d2b24dfce5003aed92f91a9fcac796e4c 100644
--- a/components/history/core/browser/typed_url_sync_bridge_unittest.cc
+++ b/components/history/core/browser/typed_url_sync_bridge_unittest.cc
@@ -108,23 +108,23 @@ class TestHistoryBackendDelegate : public HistoryBackend::Delegate {
void NotifyProfileError(sql::InitStatus init_status,
const std::string& diagnostics) override {}
void SetInMemoryBackend(
- std::unique_ptr<InMemoryHistoryBackend> backend) override{};
+ std::unique_ptr<InMemoryHistoryBackend> backend) override {}
void NotifyFaviconsChanged(const std::set<GURL>& page_urls,
- const GURL& icon_url) override{};
+ const GURL& icon_url) override {}
void NotifyURLVisited(ui::PageTransition transition,
const URLRow& row,
const RedirectList& redirects,
- base::Time visit_time) override{};
- void NotifyURLsModified(const URLRows& changed_urls) override{};
+ base::Time visit_time) override {}
+ void NotifyURLsModified(const URLRows& changed_urls) override {}
void NotifyURLsDeleted(bool all_history,
bool expired,
const URLRows& deleted_rows,
- const std::set<GURL>& favicon_urls) override{};
+ const std::set<GURL>& favicon_urls) override {}
void NotifyKeywordSearchTermUpdated(const URLRow& row,
KeywordID keyword_id,
- const base::string16& term) override{};
- void NotifyKeywordSearchTermDeleted(URLID url_id) override{};
- void DBLoaded() override{};
+ const base::string16& term) override {}
+ void NotifyKeywordSearchTermDeleted(URLID url_id) override {}
+ void DBLoaded() override {}
private:
DISALLOW_COPY_AND_ASSIGN(TestHistoryBackendDelegate);

Powered by Google App Engine
This is Rietveld 408576698