ephemeral_profile.cc revision 6791a43add38926966bd420e89541717fb2cb2b5
1// Copyright (c) 2011 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/ephemeral_profile.h"
6
7#include <string>
8#include <map>
9
10#include <chromeos/dbus/service_constants.h>
11
12#include "shill/adaptor_interfaces.h"
13#include "shill/control_interface.h"
14#include "shill/manager.h"
15
16using std::map;
17using std::string;
18
19namespace shill {
20
21EphemeralProfile::EphemeralProfile(ControlInterface *control_interface,
22                                   GLib *glib,
23                                   Manager *manager)
24    : Profile(control_interface, glib, manager) {
25}
26
27EphemeralProfile::~EphemeralProfile() {}
28
29void EphemeralProfile::Finalize() {
30  services_.clear();
31}
32
33}  // namespace shill
34