summaryrefslogtreecommitdiffstats
path: root/sync/internal_api/test/null_sync_context_proxy.cc
blob: 3695b1cfdb034235b4e79486a650850990387c66 (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
// Copyright 2014 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.

#include "sync/internal_api/public/test/null_sync_context_proxy.h"

#include "sync/internal_api/public/activation_context.h"

namespace syncer_v2 {

NullSyncContextProxy::NullSyncContextProxy() {
}

NullSyncContextProxy::~NullSyncContextProxy() {
}

void NullSyncContextProxy::ConnectTypeToSync(
    syncer::ModelType type,
    scoped_ptr<ActivationContext> activation_context) {
  NOTREACHED() << "NullSyncContextProxy is not meant to be used";
}

void NullSyncContextProxy::Disconnect(syncer::ModelType type) {
  NOTREACHED() << "NullSyncContextProxy is not meant to be used";
}

scoped_ptr<SyncContextProxy> NullSyncContextProxy::Clone() const {
  return scoped_ptr<SyncContextProxy>(new NullSyncContextProxy());
}

}  // namespace syncer_v2