blob: f4681078d14d64b2d732501bda6729700aba77d4 [file] [log] [blame]
Peter Qiu86311542015-09-01 16:38:20 -07001// Copyright 2015 The Chromium OS 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 "shill/upstart/upstart_proxy_stub.h"
6
7using std::string;
8using std::vector;
9
10namespace shill {
11
12UpstartProxyStub::UpstartProxyStub() {}
13
14void UpstartProxyStub::EmitEvent(
15 const string& /*name*/, const vector<string>& /*env*/, bool /*wait*/) {
16 // STUB IMPLEMENTATION.
17}
18
19} // namespace shill