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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
|
// Copyright (c) 2012 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.
// The history system runs on a background thread so that potentially slow
// database operations don't delay the browser. This backend processing is
// represented by HistoryBackend. The HistoryService's job is to dispatch to
// that thread.
//
// Main thread History thread
// ----------- --------------
// HistoryService <----------------> HistoryBackend
// -> HistoryDatabase
// -> SQLite connection to History
// -> ThumbnailDatabase
// -> SQLite connection to Thumbnails
// (and favicons)
#include "chrome/browser/history/history_service.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/location.h"
#include "base/memory/ref_counted.h"
#include "base/message_loop/message_loop.h"
#include "base/thread_task_runner_handle.h"
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "chrome/browser/history/history_backend.h"
#include "chrome/browser/history/in_memory_history_backend.h"
#include "chrome/browser/history/in_memory_url_index.h"
#include "components/history/core/browser/download_row.h"
#include "components/history/core/browser/history_client.h"
#include "components/history/core/browser/history_database_params.h"
#include "components/history/core/browser/history_service_observer.h"
#include "components/history/core/browser/history_types.h"
#include "components/history/core/browser/in_memory_database.h"
#include "components/history/core/browser/keyword_search_term.h"
#include "components/history/core/browser/visit_database.h"
#include "components/history/core/browser/visit_delegate.h"
#include "components/history/core/browser/visit_filter.h"
#include "components/history/core/browser/web_history_service.h"
#include "components/history/core/common/thumbnail_score.h"
#include "sync/api/sync_error_factory.h"
#include "third_party/skia/include/core/SkBitmap.h"
using base::Time;
using history::HistoryBackend;
using history::KeywordID;
namespace {
static const char* kHistoryThreadName = "Chrome_HistoryThread";
void RunWithFaviconResults(
const favicon_base::FaviconResultsCallback& callback,
std::vector<favicon_base::FaviconRawBitmapResult>* bitmap_results) {
callback.Run(*bitmap_results);
}
void RunWithFaviconResult(
const favicon_base::FaviconRawBitmapCallback& callback,
favicon_base::FaviconRawBitmapResult* bitmap_result) {
callback.Run(*bitmap_result);
}
void RunWithQueryURLResult(const HistoryService::QueryURLCallback& callback,
const history::QueryURLResult* result) {
callback.Run(result->success, result->row, result->visits);
}
void RunWithVisibleVisitCountToHostResult(
const HistoryService::GetVisibleVisitCountToHostCallback& callback,
const history::VisibleVisitCountToHostResult* result) {
callback.Run(result->success, result->count, result->first_visit);
}
// Callback from WebHistoryService::ExpireWebHistory().
void ExpireWebHistoryComplete(bool success) {
// Ignore the result.
//
// TODO(davidben): ExpireLocalAndRemoteHistoryBetween callback should not fire
// until this completes.
}
} // namespace
// Sends messages from the backend to us on the main thread. This must be a
// separate class from the history service so that it can hold a reference to
// the history service (otherwise we would have to manually AddRef and
// Release when the Backend has a reference to us).
class HistoryService::BackendDelegate : public HistoryBackend::Delegate {
public:
BackendDelegate(
const base::WeakPtr<HistoryService>& history_service,
const scoped_refptr<base::SequencedTaskRunner>& service_task_runner)
: history_service_(history_service),
service_task_runner_(service_task_runner) {}
void NotifyProfileError(sql::InitStatus init_status) override {
// Send to the history service on the main thread.
service_task_runner_->PostTask(
FROM_HERE,
base::Bind(&HistoryService::NotifyProfileError, history_service_,
init_status));
}
void SetInMemoryBackend(
scoped_ptr<history::InMemoryHistoryBackend> backend) override {
// Send the backend to the history service on the main thread.
service_task_runner_->PostTask(
FROM_HERE,
base::Bind(&HistoryService::SetInMemoryBackend, history_service_,
base::Passed(&backend)));
}
void NotifyAddVisit(const history::BriefVisitInfo& info) override {
service_task_runner_->PostTask(
FROM_HERE,
base::Bind(&HistoryService::NotifyAddVisit, history_service_, info));
}
void NotifyFaviconChanged(const std::set<GURL>& urls) override {
// Send the notification to the history service on the main thread.
service_task_runner_->PostTask(
FROM_HERE,
base::Bind(
&HistoryService::NotifyFaviconChanged, history_service_, urls));
}
void NotifyURLVisited(ui::PageTransition transition,
const history::URLRow& row,
const history::RedirectList& redirects,
base::Time visit_time) override {
service_task_runner_->PostTask(FROM_HERE,
base::Bind(&HistoryService::NotifyURLVisited,
history_service_,
transition,
row,
redirects,
visit_time));
}
void NotifyURLsModified(const history::URLRows& changed_urls) override {
service_task_runner_->PostTask(
FROM_HERE, base::Bind(&HistoryService::NotifyURLsModified,
history_service_, changed_urls));
}
void NotifyURLsDeleted(bool all_history,
bool expired,
const history::URLRows& deleted_rows,
const std::set<GURL>& favicon_urls) override {
service_task_runner_->PostTask(
FROM_HERE,
base::Bind(&HistoryService::NotifyURLsDeleted, history_service_,
all_history, expired, deleted_rows, favicon_urls));
}
void NotifyKeywordSearchTermUpdated(const history::URLRow& row,
KeywordID keyword_id,
const base::string16& term) override {
service_task_runner_->PostTask(
FROM_HERE, base::Bind(&HistoryService::NotifyKeywordSearchTermUpdated,
history_service_, row, keyword_id, term));
}
void NotifyKeywordSearchTermDeleted(history::URLID url_id) override {
service_task_runner_->PostTask(
FROM_HERE, base::Bind(&HistoryService::NotifyKeywordSearchTermDeleted,
history_service_, url_id));
}
void DBLoaded() override {
service_task_runner_->PostTask(
FROM_HERE,
base::Bind(&HistoryService::OnDBLoaded, history_service_));
}
private:
const base::WeakPtr<HistoryService> history_service_;
const scoped_refptr<base::SequencedTaskRunner> service_task_runner_;
};
// The history thread is intentionally not a BrowserThread because the
// sync integration unit tests depend on being able to create more than one
// history thread.
HistoryService::HistoryService()
: thread_(new base::Thread(kHistoryThreadName)),
history_client_(nullptr),
backend_loaded_(false),
weak_ptr_factory_(this) {
}
HistoryService::HistoryService(
history::HistoryClient* history_client,
scoped_ptr<history::VisitDelegate> visit_delegate)
: thread_(new base::Thread(kHistoryThreadName)),
visit_delegate_(visit_delegate.Pass()),
history_client_(history_client),
backend_loaded_(false),
weak_ptr_factory_(this) {
}
HistoryService::~HistoryService() {
DCHECK(thread_checker_.CalledOnValidThread());
// Shutdown the backend. This does nothing if Cleanup was already invoked.
Cleanup();
}
bool HistoryService::BackendLoaded() {
DCHECK(thread_checker_.CalledOnValidThread());
return backend_loaded_;
}
void HistoryService::ClearCachedDataForContextID(
history::ContextID context_id) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::ClearCachedDataForContextID,
history_backend_.get(), context_id));
}
history::URLDatabase* HistoryService::InMemoryDatabase() {
DCHECK(thread_checker_.CalledOnValidThread());
return in_memory_backend_ ? in_memory_backend_->db() : nullptr;
}
bool HistoryService::GetTypedCountForURL(const GURL& url, int* typed_count) {
DCHECK(thread_checker_.CalledOnValidThread());
history::URLRow url_row;
if (!GetRowForURL(url, &url_row))
return false;
*typed_count = url_row.typed_count();
return true;
}
bool HistoryService::GetLastVisitTimeForURL(const GURL& url,
base::Time* last_visit) {
DCHECK(thread_checker_.CalledOnValidThread());
history::URLRow url_row;
if (!GetRowForURL(url, &url_row))
return false;
*last_visit = url_row.last_visit();
return true;
}
bool HistoryService::GetVisitCountForURL(const GURL& url, int* visit_count) {
DCHECK(thread_checker_.CalledOnValidThread());
history::URLRow url_row;
if (!GetRowForURL(url, &url_row))
return false;
*visit_count = url_row.visit_count();
return true;
}
history::TypedUrlSyncableService* HistoryService::GetTypedUrlSyncableService()
const {
return history_backend_->GetTypedUrlSyncableService();
}
void HistoryService::Shutdown() {
DCHECK(thread_checker_.CalledOnValidThread());
Cleanup();
}
void HistoryService::SetKeywordSearchTermsForURL(const GURL& url,
KeywordID keyword_id,
const base::string16& term) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_UI,
base::Bind(&HistoryBackend::SetKeywordSearchTermsForURL,
history_backend_.get(), url, keyword_id, term));
}
void HistoryService::DeleteAllSearchTermsForKeyword(KeywordID keyword_id) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
if (in_memory_backend_)
in_memory_backend_->DeleteAllSearchTermsForKeyword(keyword_id);
ScheduleTask(PRIORITY_UI,
base::Bind(&HistoryBackend::DeleteAllSearchTermsForKeyword,
history_backend_.get(), keyword_id));
}
void HistoryService::DeleteKeywordSearchTermForURL(const GURL& url) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_UI,
base::Bind(&HistoryBackend::DeleteKeywordSearchTermForURL,
history_backend_.get(), url));
}
void HistoryService::DeleteMatchingURLsForKeyword(KeywordID keyword_id,
const base::string16& term) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_UI,
base::Bind(&HistoryBackend::DeleteMatchingURLsForKeyword,
history_backend_.get(), keyword_id, term));
}
void HistoryService::URLsNoLongerBookmarked(const std::set<GURL>& urls) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::URLsNoLongerBookmarked,
history_backend_.get(), urls));
}
void HistoryService::AddObserver(history::HistoryServiceObserver* observer) {
DCHECK(thread_checker_.CalledOnValidThread());
observers_.AddObserver(observer);
}
void HistoryService::RemoveObserver(history::HistoryServiceObserver* observer) {
DCHECK(thread_checker_.CalledOnValidThread());
observers_.RemoveObserver(observer);
}
base::CancelableTaskTracker::TaskId HistoryService::ScheduleDBTask(
scoped_ptr<history::HistoryDBTask> task,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
base::CancelableTaskTracker::IsCanceledCallback is_canceled;
base::CancelableTaskTracker::TaskId task_id =
tracker->NewTrackedTaskId(&is_canceled);
// Use base::ThreadTaskRunnerHandler::Get() to get a message loop proxy to
// the current message loop so that we can forward the call to the method
// HistoryDBTask::DoneRunOnMainThread() in the correct thread.
thread_->message_loop_proxy()->PostTask(
FROM_HERE,
base::Bind(&HistoryBackend::ProcessDBTask,
history_backend_.get(),
base::Passed(&task),
base::ThreadTaskRunnerHandle::Get(),
is_canceled));
return task_id;
}
void HistoryService::FlushForTest(const base::Closure& flushed) {
thread_->message_loop_proxy()->PostTaskAndReply(
FROM_HERE, base::Bind(&base::DoNothing), flushed);
}
void HistoryService::SetOnBackendDestroyTask(const base::Closure& task) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(
PRIORITY_NORMAL,
base::Bind(&HistoryBackend::SetOnBackendDestroyTask,
history_backend_.get(), base::MessageLoop::current(), task));
}
void HistoryService::AddPage(const GURL& url,
Time time,
history::ContextID context_id,
int nav_entry_id,
const GURL& referrer,
const history::RedirectList& redirects,
ui::PageTransition transition,
history::VisitSource visit_source,
bool did_replace_entry) {
DCHECK(thread_checker_.CalledOnValidThread());
AddPage(
history::HistoryAddPageArgs(url, time, context_id, nav_entry_id, referrer,
redirects, transition, visit_source,
did_replace_entry));
}
void HistoryService::AddPage(const GURL& url,
base::Time time,
history::VisitSource visit_source) {
DCHECK(thread_checker_.CalledOnValidThread());
AddPage(
history::HistoryAddPageArgs(url, time, nullptr, 0, GURL(),
history::RedirectList(),
ui::PAGE_TRANSITION_LINK,
visit_source, false));
}
void HistoryService::AddPage(const history::HistoryAddPageArgs& add_page_args) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
// Filter out unwanted URLs. We don't add auto-subframe URLs. They are a
// large part of history (think iframes for ads) and we never display them in
// history UI. We will still add manual subframes, which are ones the user
// has clicked on to get.
if (history_client_ && !history_client_->CanAddURL(add_page_args.url))
return;
// Inform VisitedDelegate of all links and redirects.
if (visit_delegate_) {
if (!add_page_args.redirects.empty()) {
// We should not be asked to add a page in the middle of a redirect chain,
// and thus add_page_args.url should be the last element in the array
// add_page_args.redirects which mean we can use VisitDelegate::AddURLs()
// with the whole array.
DCHECK_EQ(add_page_args.url, add_page_args.redirects.back());
visit_delegate_->AddURLs(add_page_args.redirects);
} else {
visit_delegate_->AddURL(add_page_args.url);
}
}
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::AddPage, history_backend_.get(),
add_page_args));
}
void HistoryService::AddPageNoVisitForBookmark(const GURL& url,
const base::string16& title) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
if (history_client_ && !history_client_->CanAddURL(url))
return;
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::AddPageNoVisitForBookmark,
history_backend_.get(), url, title));
}
void HistoryService::SetPageTitle(const GURL& url,
const base::string16& title) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL, base::Bind(&HistoryBackend::SetPageTitle,
history_backend_.get(), url, title));
}
void HistoryService::UpdateWithPageEndTime(history::ContextID context_id,
int nav_entry_id,
const GURL& url,
Time end_ts) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(
PRIORITY_NORMAL,
base::Bind(&HistoryBackend::UpdateWithPageEndTime, history_backend_.get(),
context_id, nav_entry_id, url, end_ts));
}
void HistoryService::AddPageWithDetails(const GURL& url,
const base::string16& title,
int visit_count,
int typed_count,
Time last_visit,
bool hidden,
history::VisitSource visit_source) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
// Filter out unwanted URLs.
if (history_client_ && !history_client_->CanAddURL(url))
return;
// Inform VisitDelegate of the URL.
if (visit_delegate_)
visit_delegate_->AddURL(url);
history::URLRow row(url);
row.set_title(title);
row.set_visit_count(visit_count);
row.set_typed_count(typed_count);
row.set_last_visit(last_visit);
row.set_hidden(hidden);
history::URLRows rows;
rows.push_back(row);
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::AddPagesWithDetails,
history_backend_.get(), rows, visit_source));
}
void HistoryService::AddPagesWithDetails(const history::URLRows& info,
history::VisitSource visit_source) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
// Inform the VisitDelegate of the URLs
if (!info.empty() && visit_delegate_) {
std::vector<GURL> urls;
urls.reserve(info.size());
for (const auto& row : info)
urls.push_back(row.url());
visit_delegate_->AddURLs(urls);
}
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::AddPagesWithDetails,
history_backend_.get(), info, visit_source));
}
base::CancelableTaskTracker::TaskId HistoryService::GetFavicons(
const std::vector<GURL>& icon_urls,
int icon_types,
const std::vector<int>& desired_sizes,
const favicon_base::FaviconResultsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
std::vector<favicon_base::FaviconRawBitmapResult>* results =
new std::vector<favicon_base::FaviconRawBitmapResult>();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::GetFavicons,
history_backend_.get(),
icon_urls,
icon_types,
desired_sizes,
results),
base::Bind(&RunWithFaviconResults, callback, base::Owned(results)));
}
base::CancelableTaskTracker::TaskId HistoryService::GetFaviconsForURL(
const GURL& page_url,
int icon_types,
const std::vector<int>& desired_sizes,
const favicon_base::FaviconResultsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
std::vector<favicon_base::FaviconRawBitmapResult>* results =
new std::vector<favicon_base::FaviconRawBitmapResult>();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::GetFaviconsForURL,
history_backend_.get(),
page_url,
icon_types,
desired_sizes,
results),
base::Bind(&RunWithFaviconResults, callback, base::Owned(results)));
}
base::CancelableTaskTracker::TaskId HistoryService::GetLargestFaviconForURL(
const GURL& page_url,
const std::vector<int>& icon_types,
int minimum_size_in_pixels,
const favicon_base::FaviconRawBitmapCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
favicon_base::FaviconRawBitmapResult* result =
new favicon_base::FaviconRawBitmapResult();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::GetLargestFaviconForURL,
history_backend_.get(),
page_url,
icon_types,
minimum_size_in_pixels,
result),
base::Bind(&RunWithFaviconResult, callback, base::Owned(result)));
}
base::CancelableTaskTracker::TaskId HistoryService::GetFaviconForID(
favicon_base::FaviconID favicon_id,
int desired_size,
const favicon_base::FaviconResultsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
std::vector<favicon_base::FaviconRawBitmapResult>* results =
new std::vector<favicon_base::FaviconRawBitmapResult>();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::GetFaviconForID,
history_backend_.get(),
favicon_id,
desired_size,
results),
base::Bind(&RunWithFaviconResults, callback, base::Owned(results)));
}
base::CancelableTaskTracker::TaskId
HistoryService::UpdateFaviconMappingsAndFetch(
const GURL& page_url,
const std::vector<GURL>& icon_urls,
int icon_types,
const std::vector<int>& desired_sizes,
const favicon_base::FaviconResultsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
std::vector<favicon_base::FaviconRawBitmapResult>* results =
new std::vector<favicon_base::FaviconRawBitmapResult>();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::UpdateFaviconMappingsAndFetch,
history_backend_.get(),
page_url,
icon_urls,
icon_types,
desired_sizes,
results),
base::Bind(&RunWithFaviconResults, callback, base::Owned(results)));
}
void HistoryService::MergeFavicon(
const GURL& page_url,
const GURL& icon_url,
favicon_base::IconType icon_type,
scoped_refptr<base::RefCountedMemory> bitmap_data,
const gfx::Size& pixel_size) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
if (history_client_ && !history_client_->CanAddURL(page_url))
return;
ScheduleTask(
PRIORITY_NORMAL,
base::Bind(&HistoryBackend::MergeFavicon, history_backend_.get(),
page_url, icon_url, icon_type, bitmap_data, pixel_size));
}
void HistoryService::SetFavicons(
const GURL& page_url,
favicon_base::IconType icon_type,
const GURL& icon_url,
const std::vector<SkBitmap>& bitmaps) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
if (history_client_ && !history_client_->CanAddURL(page_url))
return;
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::SetFavicons, history_backend_.get(),
page_url, icon_type, icon_url, bitmaps));
}
void HistoryService::SetFaviconsOutOfDateForPage(const GURL& page_url) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::SetFaviconsOutOfDateForPage,
history_backend_.get(), page_url));
}
void HistoryService::CloneFavicons(const GURL& old_page_url,
const GURL& new_page_url) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::CloneFavicons,
history_backend_.get(), old_page_url, new_page_url));
}
void HistoryService::SetImportedFavicons(
const favicon_base::FaviconUsageDataList& favicon_usage) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL,
base::Bind(&HistoryBackend::SetImportedFavicons,
history_backend_.get(), favicon_usage));
}
base::CancelableTaskTracker::TaskId HistoryService::QueryURL(
const GURL& url,
bool want_visits,
const QueryURLCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::QueryURLResult* query_url_result = new history::QueryURLResult();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::QueryURL,
history_backend_.get(),
url,
want_visits,
base::Unretained(query_url_result)),
base::Bind(
&RunWithQueryURLResult, callback, base::Owned(query_url_result)));
}
// Downloads -------------------------------------------------------------------
// Handle creation of a download by creating an entry in the history service's
// 'downloads' table.
void HistoryService::CreateDownload(
const history::DownloadRow& create_info,
const HistoryService::DownloadCreateCallback& callback) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
PostTaskAndReplyWithResult(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(
&HistoryBackend::CreateDownload, history_backend_.get(), create_info),
callback);
}
void HistoryService::GetNextDownloadId(const DownloadIdCallback& callback) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
PostTaskAndReplyWithResult(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::GetNextDownloadId, history_backend_.get()),
callback);
}
// Handle queries for a list of all downloads in the history database's
// 'downloads' table.
void HistoryService::QueryDownloads(
const DownloadQueryCallback& callback) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
std::vector<history::DownloadRow>* rows =
new std::vector<history::DownloadRow>();
scoped_ptr<std::vector<history::DownloadRow>> scoped_rows(rows);
// Beware! The first Bind() does not simply |scoped_rows.get()| because
// base::Passed(&scoped_rows) nullifies |scoped_rows|, and compilers do not
// guarantee that the first Bind's arguments are evaluated before the second
// Bind's arguments.
thread_->message_loop_proxy()->PostTaskAndReply(
FROM_HERE,
base::Bind(&HistoryBackend::QueryDownloads, history_backend_.get(), rows),
base::Bind(callback, base::Passed(&scoped_rows)));
}
// Handle updates for a particular download. This is a 'fire and forget'
// operation, so we don't need to be called back.
void HistoryService::UpdateDownload(const history::DownloadRow& data) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL, base::Bind(&HistoryBackend::UpdateDownload,
history_backend_.get(), data));
}
void HistoryService::RemoveDownloads(const std::set<uint32>& ids) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_NORMAL, base::Bind(&HistoryBackend::RemoveDownloads,
history_backend_.get(), ids));
}
base::CancelableTaskTracker::TaskId HistoryService::QueryHistory(
const base::string16& text_query,
const history::QueryOptions& options,
const QueryHistoryCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::QueryResults* query_results = new history::QueryResults();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::QueryHistory,
history_backend_.get(),
text_query,
options,
base::Unretained(query_results)),
base::Bind(callback, base::Owned(query_results)));
}
base::CancelableTaskTracker::TaskId HistoryService::QueryRedirectsFrom(
const GURL& from_url,
const QueryRedirectsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::RedirectList* result = new history::RedirectList();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::QueryRedirectsFrom,
history_backend_.get(),
from_url,
base::Unretained(result)),
base::Bind(callback, base::Owned(result)));
}
base::CancelableTaskTracker::TaskId HistoryService::QueryRedirectsTo(
const GURL& to_url,
const QueryRedirectsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::RedirectList* result = new history::RedirectList();
return tracker->PostTaskAndReply(thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::QueryRedirectsTo,
history_backend_.get(),
to_url,
base::Unretained(result)),
base::Bind(callback, base::Owned(result)));
}
base::CancelableTaskTracker::TaskId HistoryService::GetVisibleVisitCountToHost(
const GURL& url,
const GetVisibleVisitCountToHostCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::VisibleVisitCountToHostResult* result =
new history::VisibleVisitCountToHostResult();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::GetVisibleVisitCountToHost,
history_backend_.get(),
url,
base::Unretained(result)),
base::Bind(&RunWithVisibleVisitCountToHostResult,
callback,
base::Owned(result)));
}
base::CancelableTaskTracker::TaskId HistoryService::QueryMostVisitedURLs(
int result_count,
int days_back,
const QueryMostVisitedURLsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::MostVisitedURLList* result = new history::MostVisitedURLList();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::QueryMostVisitedURLs,
history_backend_.get(),
result_count,
days_back,
base::Unretained(result)),
base::Bind(callback, base::Owned(result)));
}
base::CancelableTaskTracker::TaskId HistoryService::QueryFilteredURLs(
int result_count,
const history::VisitFilter& filter,
bool extended_info,
const QueryFilteredURLsCallback& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
history::FilteredURLList* result = new history::FilteredURLList();
return tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::QueryFilteredURLs,
history_backend_.get(),
result_count,
filter,
extended_info,
base::Unretained(result)),
base::Bind(callback, base::Owned(result)));
}
void HistoryService::Cleanup() {
DCHECK(thread_checker_.CalledOnValidThread());
if (!thread_) {
// We've already cleaned up.
return;
}
NotifyHistoryServiceBeingDeleted();
weak_ptr_factory_.InvalidateWeakPtrs();
// Unload the backend.
if (history_backend_.get()) {
// Get rid of the in-memory backend.
in_memory_backend_.reset();
// Give the InMemoryURLIndex a chance to shutdown.
// NOTE: In tests, there may be no index.
if (in_memory_url_index_)
in_memory_url_index_->ShutDown();
// The backend's destructor must run on the history thread since it is not
// threadsafe. So this thread must not be the last thread holding a
// reference to the backend, or a crash could happen.
//
// We have a reference to the history backend. There is also an extra
// reference held by our delegate installed in the backend, which
// HistoryBackend::Closing will release. This means if we scheduled a call
// to HistoryBackend::Closing and *then* released our backend reference,
// there will be a race between us and the backend's Closing function to see
// who is the last holder of a reference. If the backend thread's Closing
// manages to run before we release our backend refptr, the last reference
// will be held by this thread and the destructor will be called from here.
//
// Therefore, we create a closure to run the Closing operation first. This
// holds a reference to the backend. Then we release our reference, then we
// schedule the task to run. After the task runs, it will delete its
// reference from the history thread, ensuring everything works properly.
//
// TODO(ajwong): Cleanup HistoryBackend lifetime issues.
// See http://crbug.com/99767.
history_backend_->AddRef();
base::Closure closing_task =
base::Bind(&HistoryBackend::Closing, history_backend_.get());
ScheduleTask(PRIORITY_NORMAL, closing_task);
closing_task.Reset();
HistoryBackend* raw_ptr = history_backend_.get();
history_backend_ = nullptr;
thread_->message_loop()->ReleaseSoon(FROM_HERE, raw_ptr);
}
// Delete the thread, which joins with the background thread. We defensively
// nullptr the pointer before deleting it in case somebody tries to use it
// during shutdown, but this shouldn't happen.
base::Thread* thread = thread_;
thread_ = nullptr;
delete thread;
}
bool HistoryService::Init(
bool no_db,
const std::string& languages,
const history::HistoryDatabaseParams& history_database_params) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
base::Thread::Options options;
options.timer_slack = base::TIMER_SLACK_MAXIMUM;
if (!thread_->StartWithOptions(options)) {
Cleanup();
return false;
}
if (!languages.empty()) {
// Do not create |in_memory_url_index_| when languages is empty (which
// should only happens during testing).
in_memory_url_index_.reset(new history::InMemoryURLIndex(
this, history_database_params.history_dir, languages));
in_memory_url_index_->Init();
}
// Create the history backend.
scoped_refptr<HistoryBackend> backend(new HistoryBackend(
new BackendDelegate(weak_ptr_factory_.GetWeakPtr(),
base::ThreadTaskRunnerHandle::Get()),
history_client_));
history_backend_.swap(backend);
ScheduleTask(PRIORITY_UI,
base::Bind(&HistoryBackend::Init, history_backend_.get(),
languages, no_db, history_database_params));
if (visit_delegate_ && !visit_delegate_->Init(this))
return false;
return true;
}
void HistoryService::ScheduleAutocomplete(const base::Callback<
void(history::HistoryBackend*, history::URLDatabase*)>& callback) {
DCHECK(thread_checker_.CalledOnValidThread());
ScheduleTask(PRIORITY_UI, base::Bind(&HistoryBackend::ScheduleAutocomplete,
history_backend_.get(), callback));
}
void HistoryService::ScheduleTask(SchedulePriority priority,
const base::Closure& task) {
DCHECK(thread_checker_.CalledOnValidThread());
CHECK(thread_);
CHECK(thread_->message_loop());
// TODO(brettw): Do prioritization.
thread_->message_loop()->PostTask(FROM_HERE, task);
}
base::WeakPtr<HistoryService> HistoryService::AsWeakPtr() {
DCHECK(thread_checker_.CalledOnValidThread());
return weak_ptr_factory_.GetWeakPtr();
}
syncer::SyncMergeResult HistoryService::MergeDataAndStartSyncing(
syncer::ModelType type,
const syncer::SyncDataList& initial_sync_data,
scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
scoped_ptr<syncer::SyncErrorFactory> error_handler) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK_EQ(type, syncer::HISTORY_DELETE_DIRECTIVES);
delete_directive_handler_.Start(this, initial_sync_data,
sync_processor.Pass());
return syncer::SyncMergeResult(type);
}
void HistoryService::StopSyncing(syncer::ModelType type) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK_EQ(type, syncer::HISTORY_DELETE_DIRECTIVES);
delete_directive_handler_.Stop();
}
syncer::SyncDataList HistoryService::GetAllSyncData(
syncer::ModelType type) const {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK_EQ(type, syncer::HISTORY_DELETE_DIRECTIVES);
// TODO(akalin): Keep track of existing delete directives.
return syncer::SyncDataList();
}
syncer::SyncError HistoryService::ProcessSyncChanges(
const tracked_objects::Location& from_here,
const syncer::SyncChangeList& change_list) {
delete_directive_handler_.ProcessSyncChanges(this, change_list);
return syncer::SyncError();
}
syncer::SyncError HistoryService::ProcessLocalDeleteDirective(
const sync_pb::HistoryDeleteDirectiveSpecifics& delete_directive) {
DCHECK(thread_checker_.CalledOnValidThread());
return delete_directive_handler_.ProcessLocalDeleteDirective(
delete_directive);
}
void HistoryService::SetInMemoryBackend(
scoped_ptr<history::InMemoryHistoryBackend> mem_backend) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(!in_memory_backend_) << "Setting mem DB twice";
in_memory_backend_.reset(mem_backend.release());
// The database requires additional initialization once we own it.
in_memory_backend_->AttachToHistoryService(this);
}
void HistoryService::NotifyProfileError(sql::InitStatus init_status) {
DCHECK(thread_checker_.CalledOnValidThread());
if (history_client_)
history_client_->NotifyProfileError(init_status);
}
void HistoryService::DeleteURL(const GURL& url) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
// We will update the visited links when we observe the delete notifications.
ScheduleTask(PRIORITY_NORMAL, base::Bind(&HistoryBackend::DeleteURL,
history_backend_.get(), url));
}
void HistoryService::DeleteURLsForTest(const std::vector<GURL>& urls) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
// We will update the visited links when we observe the delete
// notifications.
ScheduleTask(PRIORITY_NORMAL, base::Bind(&HistoryBackend::DeleteURLs,
history_backend_.get(), urls));
}
void HistoryService::ExpireHistoryBetween(
const std::set<GURL>& restrict_urls,
Time begin_time,
Time end_time,
const base::Closure& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
tracker->PostTaskAndReply(thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::ExpireHistoryBetween,
history_backend_,
restrict_urls,
begin_time,
end_time),
callback);
}
void HistoryService::ExpireHistory(
const std::vector<history::ExpireHistoryArgs>& expire_list,
const base::Closure& callback,
base::CancelableTaskTracker* tracker) {
DCHECK(thread_) << "History service being called after cleanup";
DCHECK(thread_checker_.CalledOnValidThread());
tracker->PostTaskAndReply(
thread_->message_loop_proxy().get(),
FROM_HERE,
base::Bind(&HistoryBackend::ExpireHistory, history_backend_, expire_list),
callback);
}
void HistoryService::ExpireLocalAndRemoteHistoryBetween(
history::WebHistoryService* web_history,
const std::set<GURL>& restrict_urls,
Time begin_time,
Time end_time,
const base::Closure& callback,
base::CancelableTaskTracker* tracker) {
// TODO(dubroy): This should be factored out into a separate class that
// dispatches deletions to the proper places.
if (web_history) {
// TODO(dubroy): This API does not yet support deletion of specific URLs.
DCHECK(restrict_urls.empty());
delete_directive_handler_.CreateDeleteDirectives(
std::set<int64>(), begin_time, end_time);
// Attempt online deletion from the history server, but ignore the result.
// Deletion directives ensure that the results will eventually be deleted.
//
// TODO(davidben): |callback| should not run until this operation completes
// too.
web_history->ExpireHistoryBetween(
restrict_urls, begin_time, end_time,
base::Bind(&ExpireWebHistoryComplete));
}
ExpireHistoryBetween(restrict_urls, begin_time, end_time, callback, tracker);
}
void HistoryService::OnDBLoaded() {
DCHECK(thread_checker_.CalledOnValidThread());
backend_loaded_ = true;
NotifyHistoryServiceLoaded();
}
bool HistoryService::GetRowForURL(const GURL& url, history::URLRow* url_row) {
DCHECK(thread_checker_.CalledOnValidThread());
history::URLDatabase* db = InMemoryDatabase();
return db && (db->GetRowForURL(url, url_row) != 0);
}
void HistoryService::NotifyAddVisit(const history::BriefVisitInfo& info) {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(
history::HistoryServiceObserver, observers_, OnAddVisit(this, info));
}
void HistoryService::NotifyURLVisited(ui::PageTransition transition,
const history::URLRow& row,
const history::RedirectList& redirects,
base::Time visit_time) {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(history::HistoryServiceObserver,
observers_,
OnURLVisited(this, transition, row, redirects, visit_time));
}
void HistoryService::NotifyURLsModified(const history::URLRows& changed_urls) {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(history::HistoryServiceObserver,
observers_,
OnURLsModified(this, changed_urls));
}
void HistoryService::NotifyURLsDeleted(bool all_history,
bool expired,
const history::URLRows& deleted_rows,
const std::set<GURL>& favicon_urls) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!thread_)
return;
// Inform the VisitDelegate of the deleted URLs. We will inform the delegate
// of added URLs as soon as we get the add notification (we don't have to wait
// for the backend, which allows us to be faster to update the state).
//
// For deleted URLs, we don't typically know what will be deleted since
// delete notifications are by time. We would also like to be more
// respectful of privacy and never tell the user something is gone when it
// isn't. Therefore, we update the delete URLs after the fact.
if (visit_delegate_) {
if (all_history) {
visit_delegate_->DeleteAllURLs();
} else {
std::vector<GURL> urls;
urls.reserve(deleted_rows.size());
for (const auto& row : deleted_rows)
urls.push_back(row.url());
visit_delegate_->DeleteURLs(urls);
}
}
FOR_EACH_OBSERVER(
history::HistoryServiceObserver, observers_,
OnURLsDeleted(this, all_history, expired, deleted_rows, favicon_urls));
}
void HistoryService::NotifyHistoryServiceLoaded() {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(history::HistoryServiceObserver, observers_,
OnHistoryServiceLoaded(this));
}
void HistoryService::NotifyHistoryServiceBeingDeleted() {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(history::HistoryServiceObserver, observers_,
HistoryServiceBeingDeleted(this));
}
void HistoryService::NotifyKeywordSearchTermUpdated(
const history::URLRow& row,
history::KeywordID keyword_id,
const base::string16& term) {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(history::HistoryServiceObserver, observers_,
OnKeywordSearchTermUpdated(this, row, keyword_id, term));
}
void HistoryService::NotifyKeywordSearchTermDeleted(history::URLID url_id) {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(history::HistoryServiceObserver, observers_,
OnKeywordSearchTermDeleted(this, url_id));
}
scoped_ptr<base::CallbackList<void(const std::set<GURL>&)>::Subscription>
HistoryService::AddFaviconChangedCallback(
const HistoryService::OnFaviconChangedCallback& callback) {
DCHECK(thread_checker_.CalledOnValidThread());
return favicon_changed_callback_list_.Add(callback);
}
void HistoryService::NotifyFaviconChanged(
const std::set<GURL>& changed_favicons) {
DCHECK(thread_checker_.CalledOnValidThread());
favicon_changed_callback_list_.Notify(changed_favicons);
}
|