OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TopSites
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/history/
top_sites.h
32
// Interface for
TopSites
, which stores the data for the top "most visited"
38
class
TopSites
39
: public base::RefCountedThreadSafe<
TopSites
>,
42
TopSites
() {}
44
// Initializes
TopSites
.
45
static
TopSites
* Create(Profile* profile, const base::FilePath& db_name);
98
// Asks
TopSites
to refresh what it thinks the top sites are. This may do
129
// This function also returns false if
TopSites
isn't loaded yet.
139
// also returns false if
TopSites
isn't loaded yet.
144
// false if
TopSites
isn't loaded yet
[
all
...]
/external/chromium/chrome/browser/history/
top_sites.h
47
class
TopSites
48
: public base::RefCountedThreadSafe<
TopSites
>,
52
explicit
TopSites
(Profile* profile);
54
// Initializes
TopSites
.
158
// This function also returns false if
TopSites
isn't loaded yet.
163
//
TopSites
isn't loaded yet.
168
virtual ~
TopSites
();
171
friend class base::RefCountedThreadSafe<
TopSites
>;
299
// Callback from
TopSites
with the top sites/thumbnails.
327
base::OneShotTimer<
TopSites
> timer_
[
all
...]
top_sites.cc
74
//
TopSites
::FinishHistoryMigration.
77
LoadThumbnailsFromHistoryTask(
TopSites
* top_sites,
118
scoped_refptr<
TopSites
> top_sites_;
130
TopSites
::
TopSites
(Profile* profile)
166
void
TopSites
::Init(const FilePath& db_name) {
173
NewCallback(this, &
TopSites
::OnGotMostVisitedThumbnails));
185
bool
TopSites
::SetPageThumbnail(const GURL& url,
223
void
TopSites
::GetMostVisitedURLs(CancelableRequestConsumer* consumer,
246
bool
TopSites
::GetPageThumbnail(const GURL& url
[
all
...]
Completed in 79 milliseconds