summaryrefslogtreecommitdiffstats
path: root/sync/test/sessions/test_scoped_session_event_listener.h
blob: d2f68b83016187504c130eb8d5cac598fdb9f589 (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
// Copyright (c) 2012 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 SYNC_TEST_SESSIONS_TEST_SCOPED_SESSION_EVENT_LISTENER_H_
#define SYNC_TEST_SESSIONS_TEST_SCOPED_SESSION_EVENT_LISTENER_H_

#include "sync/sessions/sync_session_context.h"

namespace syncer {
namespace sessions {

// Installs a SyncEventListener to a given session context for the lifetime of
// the TestScopedSessionEventListener.
class TestScopedSessionEventListener {
 public:
  TestScopedSessionEventListener(
      SyncSessionContext* context,
      SyncEngineEventListener* listener)
    : context_(context), listener_(listener) {
      context->listeners_.AddObserver(listener);
  }
  ~TestScopedSessionEventListener() {
    context_->listeners_.RemoveObserver(listener_);
  }
 private:
  SyncSessionContext* context_;
  SyncEngineEventListener* listener_;
  DISALLOW_COPY_AND_ASSIGN(TestScopedSessionEventListener);
};

}  // namespace sessions
}  // namespace syncer

#endif  // SYNC_TEST_SESSIONS_TEST_SCOPED_SESSION_EVENT_LISTENER_H_