Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: chrome/browser/sync/glue/dummy_invalidator.cc

Issue 15580002: Make use of InvalidationService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/sync/glue/dummy_invalidator.h"
6
7 DummyInvalidator::DummyInvalidator() {}
8 DummyInvalidator::~DummyInvalidator() {}
9
10 void DummyInvalidator::RegisterHandler(syncer::InvalidationHandler* handler) {}
11
12 void DummyInvalidator::UpdateRegisteredIds(
13 syncer::InvalidationHandler* handler,
14 const syncer::ObjectIdSet& ids) {}
15
16 void DummyInvalidator::UnregisterHandler(
17 syncer::InvalidationHandler* handler) {}
18
19 void DummyInvalidator::Acknowledge(const invalidation::ObjectId& id,
20 const syncer::AckHandle& ack_handle) {}
21
22 syncer::InvalidatorState DummyInvalidator::GetInvalidatorState() const {
23 return syncer::TRANSIENT_INVALIDATION_ERROR;
24 }
25
26 void DummyInvalidator::UpdateCredentials(
27 const std::string& email, const std::string& token) {}
28
29 void DummyInvalidator::SendInvalidation(
30 const syncer::ObjectIdInvalidationMap& invalidation_map) {}
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/dummy_invalidator.h ('k') | chrome/browser/sync/glue/sync_backend_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698