OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Invalidator
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/components/invalidation/
invalidator.cc
5
#include "components/invalidation/
invalidator
.h"
9
Invalidator
::
Invalidator
() {
12
Invalidator
::~
Invalidator
() {
invalidator.h
5
// Interface to the
invalidator
, which is an object that receives
22
class INVALIDATION_EXPORT
Invalidator
{
24
Invalidator
();
25
virtual ~
Invalidator
();
31
//
invalidator
->RegisterHandler(client_handler);
37
//
invalidator
->UpdateRegisteredIds(client_handler, client_ids);
41
//
invalidator
->UnregisterHandler(client_handler);
49
//
invalidator
->UpdateRegisteredIds(client_handler, ObjectIdSet());
50
//
invalidator
->UnregisterHandler(client_handler);
52
// It is an error to have registered handlers when an
invalidator
i
[
all
...]
invalidator_test_template.cc
11
const
Invalidator
&
invalidator
)
12
: invalidator_(
invalidator
),
ticl_invalidation_service.h
37
class
Invalidator
;
118
// Initializes with an injected
invalidator
.
121
syncer::
Invalidator
*
invalidator
);
142
scoped_ptr<syncer::
Invalidator
> invalidator_;
fake_invalidator.h
13
#include "components/invalidation/
invalidator
.h"
18
class FakeInvalidator : public
Invalidator
{
invalidation_notifier_unittest.cc
52
Invalidator
* GetInvalidator() {
invalidator_test_template.h
5
// This class defines tests that implementations of
Invalidator
should pass in
20
// // Create the
Invalidator
implementation with the given parameters.
28
// // Should return the
Invalidator
implementation. Only called after
34
// // Destroy the
Invalidator
implementation.
40
// //
Invalidator
implementation. Should block until the effects of the
50
// // observers of the
Invalidator
implementation with the given
57
// // observers of the
Invalidator
implementation with the given
84
#include "components/invalidation/
invalidator
.h"
102
Invalidator
* CreateAndInitializeInvalidator() {
106
Invalidator
* const invalidator = this->delegate_.GetInvalidator()
local
131
Invalidator* const
invalidator
= this->CreateAndInitializeInvalidator();
local
197
Invalidator* const
invalidator
= this->CreateAndInitializeInvalidator();
local
278
Invalidator* const
invalidator
= this->CreateAndInitializeInvalidator();
local
355
Invalidator* const
invalidator
= this->CreateAndInitializeInvalidator();
local
[
all
...]
invalidation_notifier.h
5
// An implementation of
Invalidator
that wraps an invalidation
26
#include "components/invalidation/
invalidator
.h"
38
: public
Invalidator
,
55
//
Invalidator
implementation.
non_blocking_invalidator_unittest.cc
57
Invalidator
* GetInvalidator() {
invalidator_registrar_unittest.cc
18
// We test InvalidatorRegistrar by wrapping it in an
Invalidator
and
19
// running the usual
Invalidator
tests.
21
// Thin
Invalidator
wrapper around InvalidatorRegistrar.
22
class RegistrarInvalidator : public
Invalidator
{
31
//
Invalidator
implementation.
non_blocking_invalidator.h
20
#include "components/invalidation/
invalidator
.h"
40
: public
Invalidator
,
56
//
Invalidator
implementation.
69
// SyncSystemResources. The goal is to pass network channel to
invalidator
at
70
// the same time not exposing channel specific parameters to
invalidator
and
71
// channel implementation to client of
invalidator
.
p2p_invalidator.h
5
// An
invalidator
that uses p2p invalidations based on XMPP push
20
#include "components/invalidation/
invalidator
.h"
89
: public
Invalidator
,
103
//
Invalidator
implementation.
ticl_invalidation_service.cc
13
#include "components/invalidation/
invalidator
.h"
103
syncer::
Invalidator
*
invalidator
) {
106
//
invalidator
.
108
invalidator_.reset(
invalidator
);
158
DVLOG(2) << "
Invalidator
currently stopped";
284
// fetch a new one using our refresh token. Resetting the
invalidator
's
285
// access token will not reset the
invalidator
's exponential backoff, so
/external/chromium_org/chrome/browser/invalidation/
profile_invalidation_provider_factory.h
21
class
Invalidator
;
/external/chromium_org/sync/tools/
sync_listen_notifications.cc
21
#include "components/invalidation/
invalidator
.h"
58
LOG(INFO) << "
Invalidator
state changed to "
190
scoped_ptr<
Invalidator
>
invalidator
(
202
invalidator
->UpdateCredentials(email, token);
205
invalidator
->RegisterHandler(¬ification_printer);
206
invalidator
->UpdateRegisteredIds(
211
invalidator
->UnregisterHandler(¬ification_printer);
sync_client.cc
353
scoped_ptr<
Invalidator
>
invalidator
(new NonBlockingInvalidator(
455
invalidator
->UpdateCredentials(credentials.email, credentials.sync_token);
457
invalidator
->RegisterHandler(shim.get());
458
invalidator
->UpdateRegisteredIds(
Completed in 886 milliseconds