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

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

Issue 1198373002: Split HistoryClient in two objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1192403002
Patch Set: Add comments in ChromeHistoryBackendClient Created 5 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/history_client.cc
diff --git a/components/history/core/browser/history_client.cc b/components/history/core/browser/history_client.cc
deleted file mode 100644
index 8cfa60f27fdb9772f8dc3b16fb54596cb5451b50..0000000000000000000000000000000000000000
--- a/components/history/core/browser/history_client.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/history/core/browser/history_client.h"
-
-namespace history {
-
-HistoryClient::HistoryClient() {
-}
-
-HistoryClient::~HistoryClient() {
-}
-
-void HistoryClient::Shutdown() {
-}
-
-void HistoryClient::BlockUntilBookmarksLoaded() {
-}
-
-bool HistoryClient::IsBookmarked(const GURL& url) {
- return false;
-}
-
-void HistoryClient::GetBookmarks(std::vector<URLAndTitle>* bookmarks) {
-}
-
-bool HistoryClient::CanAddURL(const GURL& url) {
- return true;
-}
-
-void HistoryClient::NotifyProfileError(sql::InitStatus init_status) {
-}
-
-bool HistoryClient::ShouldReportDatabaseError() {
- return false;
-}
-
-void HistoryClient::OnHistoryBackendInitialized(
- HistoryBackend* history_backend,
- HistoryDatabase* history_database,
- ThumbnailDatabase* thumbnail_database,
- const base::FilePath& history_dir) {
-}
-
-void HistoryClient::OnHistoryBackendDestroyed(
- HistoryBackend* history_backend,
- const base::FilePath& history_dir) {
-}
-
-} // namespace history
« no previous file with comments | « components/history/core/browser/history_client.h ('k') | components/history/core/browser/history_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698