blob: 4718801ffa1e5337aee25a4d08bbfa6f7cd73a60 (
plain)
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
|
// Copyright (c) 2011 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.
#ifndef CHROME_BROWSER_HISTORY_HISTORY_PUBLISHER_H_
#define CHROME_BROWSER_HISTORY_HISTORY_PUBLISHER_H_
#pragma once
#include <vector>
#include "base/basictypes.h"
#include "base/string16.h"
#if defined(OS_WIN)
#include "base/win/scoped_comptr.h"
#include "history_indexer.h"
#endif
class GURL;
namespace base {
class Time;
}
namespace history {
class HistoryPublisher {
public:
HistoryPublisher();
~HistoryPublisher();
// Must call this function to complete initialization. Returns true if we
// need to publish data to any indexers registered with us. Returns false if
// there are none registered. On false, no other function should be called.
bool Init();
void PublishPageThumbnail(const std::vector<unsigned char>& thumbnail,
const GURL& url, const base::Time& time) const;
void PublishPageContent(const base::Time& time, const GURL& url,
const string16& title,
const string16& contents) const;
void DeleteUserHistoryBetween(const base::Time& begin_time,
const base::Time& end_time) const;
private:
struct PageData {
const base::Time& time;
const GURL& url;
const char16* html;
const char16* title;
const char* thumbnail_format;
const std::vector<unsigned char>* thumbnail;
};
void PublishDataToIndexers(const PageData& page_data) const;
#if defined(OS_WIN)
// Initializes the indexer_list_ with the list of indexers that registered
// with us to index history. Returns true if there are any registered.
bool ReadRegisteredIndexersFromRegistry();
// Converts time represented by the Time class object to variant time in UTC.
// Returns '0' if the time object is NULL.
static double TimeToUTCVariantTime(const base::Time& time);
typedef std::vector< base::win::ScopedComPtr<
IChromeHistoryIndexer> > IndexerList;
// The list of indexers registered to receive history data from us.
IndexerList indexers_;
// The Registry key under HKCU where the indexers need to register their
// CLSID.
static const wchar_t* const kRegKeyRegisteredIndexersInfo;
#endif
// The format of the thumbnail we pass to indexers.
static const char* const kThumbnailImageFormat;
DISALLOW_COPY_AND_ASSIGN(HistoryPublisher);
};
} // namespace history
#endif // CHROME_BROWSER_HISTORY_HISTORY_PUBLISHER_H_
|