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
|
// Copyright (c) 2009 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/favicon_service.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/dom_ui/dom_ui_factory.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/history/history_backend.h"
#include "chrome/browser/profile.h"
#include "chrome/common/url_constants.h"
FaviconService::FaviconService(Profile* profile) : profile_(profile) {
}
FaviconService::Handle FaviconService::GetFavicon(
const GURL& icon_url,
CancelableRequestConsumerBase* consumer,
FaviconDataCallback* callback) {
GetFaviconRequest* request = new GetFaviconRequest(callback);
AddRequest(request, consumer);
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)
hs->GetFavicon(request, icon_url);
else
ForwardEmptyResultAsync(request);
return request->handle();
}
FaviconService::Handle FaviconService::UpdateFaviconMappingAndFetch(
const GURL& page_url,
const GURL& icon_url,
CancelableRequestConsumerBase* consumer,
FaviconService::FaviconDataCallback* callback) {
GetFaviconRequest* request = new GetFaviconRequest(callback);
AddRequest(request, consumer);
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)
hs->UpdateFaviconMappingAndFetch(request, page_url, icon_url);
else
ForwardEmptyResultAsync(request);
return request->handle();
}
FaviconService::Handle FaviconService::GetFaviconForURL(
const GURL& page_url,
CancelableRequestConsumerBase* consumer,
FaviconDataCallback* callback) {
GetFaviconRequest* request = new GetFaviconRequest(callback);
AddRequest(request, consumer);
if (page_url.SchemeIs(chrome::kChromeUIScheme) ||
page_url.SchemeIs(chrome::kExtensionScheme)) {
ChromeThread::PostTask(ChromeThread::FILE, FROM_HERE,
NewRunnableMethod(this, &FaviconService::GetFaviconForDOMUIOnFileThread,
request, page_url));
} else {
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)
hs->GetFaviconForURL(request, page_url);
else
ForwardEmptyResultAsync(request);
}
return request->handle();
}
void FaviconService::GetFaviconForDOMUIOnFileThread(GetFaviconRequest* request,
const GURL& page_url) {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
DCHECK(page_url.SchemeIs(chrome::kChromeUIScheme) ||
page_url.SchemeIs(chrome::kExtensionScheme));
// TODO(erg): For now, we're cheating here. DOMUIFactory returns the new
// RefCountedMemory superclass, but consumers of favicon information are
// still all hardcoded to use RefCountedBytes. For now, just copy the
// favicon data in this case because the returned RefCountedMemory class is
// the statically allocated memory one; not the vector backed
// RefCountedBytes.
scoped_refptr<RefCountedBytes> icon_data = NULL;
scoped_refptr<RefCountedMemory> static_memory(
DOMUIFactory::GetFaviconResourceBytes(profile_, page_url));
bool know_icon = static_memory.get() != NULL;
if (know_icon) {
std::vector<unsigned char> bytes;
bytes.insert(bytes.begin(),
static_memory->front(),
static_memory->front() + static_memory->size());
icon_data = RefCountedBytes::TakeVector(&bytes);
}
request->ForwardResult(FaviconDataCallback::TupleType(request->handle(),
know_icon, icon_data, false, GURL()));
}
void FaviconService::SetFaviconOutOfDateForPage(const GURL& page_url) {
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)
hs->SetFaviconOutOfDateForPage(page_url);
}
void FaviconService::SetImportedFavicons(
const std::vector<history::ImportedFavIconUsage>& favicon_usage) {
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)
hs->SetImportedFavicons(favicon_usage);
}
void FaviconService::SetFavicon(const GURL& page_url,
const GURL& icon_url,
const std::vector<unsigned char>& image_data) {
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)
hs->SetFavicon(page_url, icon_url, image_data);
}
void FaviconService::ForwardEmptyResultAsync(GetFaviconRequest* request) {
request->ForwardResultAsync(FaviconDataCallback::TupleType(request->handle(),
false, NULL, false, GURL()));
}
|