1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// Copyright 2015 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 "chrome/browser/history/chrome_history_backend_client.h"
#include "chrome/common/channel_info.h"
#include "chrome/common/features.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/version_info/version_info.h"
#include "url/gurl.h"
#if BUILDFLAG(ANDROID_JAVA_UI)
#include "base/files/file_path.h"
#include "base/logging.h"
#include "chrome/browser/history/android/android_provider_backend.h"
#include "components/history/core/browser/history_backend.h"
#endif
#if BUILDFLAG(ANDROID_JAVA_UI)
namespace {
const base::FilePath::CharType kAndroidCacheFilename[] =
FILE_PATH_LITERAL("AndroidCache");
}
#endif // defined(OS_IOS)
ChromeHistoryBackendClient::ChromeHistoryBackendClient(
bookmarks::BookmarkModel* bookmark_model)
: bookmark_model_(bookmark_model) {
}
ChromeHistoryBackendClient::~ChromeHistoryBackendClient() {
}
bool ChromeHistoryBackendClient::IsBookmarked(const GURL& url) {
if (!bookmark_model_)
return false;
// HistoryBackendClient is used to determine if an URL is bookmarked. The data
// is loaded on a separate thread and may not be done when this method is
// called, therefore blocks until the bookmarks have finished loading.
bookmark_model_->BlockTillLoaded();
return bookmark_model_->IsBookmarked(url);
}
void ChromeHistoryBackendClient::GetBookmarks(
std::vector<history::URLAndTitle>* bookmarks) {
if (!bookmark_model_)
return;
// HistoryBackendClient is used to determine the set of bookmarked URLs. The
// data is loaded on a separate thread and may not be done when this method is
// called, therefore blocks until the bookmarks have finished loading.
std::vector<bookmarks::BookmarkModel::URLAndTitle> url_and_titles;
bookmark_model_->BlockTillLoaded();
bookmark_model_->GetBookmarks(&url_and_titles);
bookmarks->reserve(bookmarks->size() + url_and_titles.size());
for (const auto& url_and_title : url_and_titles) {
history::URLAndTitle value = { url_and_title.url, url_and_title.title };
bookmarks->push_back(value);
}
}
bool ChromeHistoryBackendClient::ShouldReportDatabaseError() {
// TODO(shess): For now, don't report on beta or stable so as not to
// overwhelm the crash server. Once the big fish are fried,
// consider reporting at a reduced rate on the bigger channels.
version_info::Channel channel = chrome::GetChannel();
return channel != version_info::Channel::STABLE &&
channel != version_info::Channel::BETA;
}
#if BUILDFLAG(ANDROID_JAVA_UI)
void ChromeHistoryBackendClient::OnHistoryBackendInitialized(
history::HistoryBackend* history_backend,
history::HistoryDatabase* history_database,
history::ThumbnailDatabase* thumbnail_database,
const base::FilePath& history_dir) {
DCHECK(history_backend);
if (thumbnail_database) {
history_backend->SetUserData(
history::AndroidProviderBackend::GetUserDataKey(),
new history::AndroidProviderBackend(
history_dir.Append(kAndroidCacheFilename), history_database,
thumbnail_database, this, history_backend));
}
}
void ChromeHistoryBackendClient::OnHistoryBackendDestroyed(
history::HistoryBackend* history_backend,
const base::FilePath& history_dir) {
sql::Connection::Delete(history_dir.Append(kAndroidCacheFilename));
}
#endif // BUILDFLAG(ANDROID_JAVA_UI)
|