OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebDataService
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/webdata/
web_data_service.h
52
//
WebDataService
is a generic data repository for meta data associated with
62
//
WebDataService
results
94
class
WebDataService
: public WebDataServiceBase {
96
// Retrieve a
WebDataService
for the given context.
97
static scoped_refptr<
WebDataService
> FromBrowserContext(
100
WebDataService
(scoped_refptr<WebDatabaseService> wdbs,
174
WebDataService
();
176
virtual ~
WebDataService
();
255
DISALLOW_COPY_AND_ASSIGN(
WebDataService
);
web_data_service.cc
25
//
WebDataService
implementation.
44
WebDataService
::
WebDataService
(scoped_refptr<WebDatabaseService> wdbs,
56
void
WebDataService
::AddKeyword(const TemplateURLData& data) {
58
FROM_HERE, Bind(&
WebDataService
::AddKeywordImpl, this, data));
61
void
WebDataService
::RemoveKeyword(TemplateURLID id) {
63
FROM_HERE, Bind(&
WebDataService
::RemoveKeywordImpl, this, id));
66
void
WebDataService
::UpdateKeyword(const TemplateURLData& data) {
68
FROM_HERE, Bind(&
WebDataService
::UpdateKeywordImpl, this, data));
71
WebDataServiceBase::Handle
WebDataService
::GetKeywords
[
all
...]
/external/chromium/chrome/browser/webdata/
web_data_service.cc
31
//
WebDataService
implementation.
50
WebDataService
::
WebDataService
()
59
bool
WebDataService
::Init(const FilePath& profile_path) {
65
void
WebDataService
::Shutdown() {
69
bool
WebDataService
::IsRunning() const {
73
void
WebDataService
::UnloadDatabase() {
74
ScheduleTask(NewRunnableMethod(this, &
WebDataService
::ShutdownDatabase));
77
void
WebDataService
::CancelRequest(Handle h) {
87
bool
WebDataService
::IsDatabaseLoaded()
[
all
...]
web_data_service.h
54
//
WebDataService
is a generic data repository for meta data associated with
64
//
WebDataService
results
174
class
WebDataService
175
: public base::RefCountedThreadSafe<
WebDataService
193
WebDataRequest(
WebDataService
* service,
217
scoped_refptr<
WebDataService
> service_;
234
GenericRequest(
WebDataService
* service,
256
GenericRequest2(
WebDataService
* service,
281
WebDataService
();
506
virtual ~
WebDataService
();
[
all
...]
Completed in 461 milliseconds