summaryrefslogtreecommitdiff
path: root/mock_event_dispatcher.cc
blob: 92e739ba50fa942ff7517d358cb48c20b37c5fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2015 The Chromium OS 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 "apmanager/mock_event_dispatcher.h"

namespace apmanager {

namespace {
base::LazyInstance<MockEventDispatcher> g_mock_event_dispatcher
    = LAZY_INSTANCE_INITIALIZER;
}  // namespace

MockEventDispatcher::MockEventDispatcher() {}
MockEventDispatcher::~MockEventDispatcher() {}

MockEventDispatcher* MockEventDispatcher::GetInstance() {
  return g_mock_event_dispatcher.Pointer();
}

}  // namespace apmanager