blob: 6e3728e8efcbc97f3decf31cc50a61b3bb34343f [file] [log] [blame]
// Copyright 2018 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.
#ifndef SHILL_EPHEMERAL_PROFILE_H_
#define SHILL_EPHEMERAL_PROFILE_H_
#include <string>
#include "shill/event_dispatcher.h"
#include "shill/profile.h"
#include "shill/property_store.h"
#include "shill/refptr_types.h"
namespace shill {
class ControlInterface;
class Manager;
// An in-memory profile that is not persisted to disk, but allows the
// promotion of entries contained herein to the currently active profile.
class EphemeralProfile : public Profile {
public:
EphemeralProfile(ControlInterface* control_interface,
Metrics* metrics,
Manager* manager);
~EphemeralProfile() override;
std::string GetFriendlyName() const override;
bool AdoptService(const ServiceRefPtr& service) override;
bool AbandonService(const ServiceRefPtr& service) override;
// Should not be called.
bool Save() override;
private:
DISALLOW_COPY_AND_ASSIGN(EphemeralProfile);
};
} // namespace shill
#endif // SHILL_EPHEMERAL_PROFILE_H_