blob: 40e1ffa75f025b7d70c2a69e23314f690e998931 [file] [log] [blame]
// Copyright (c) 2011 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 <vector>
#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;
class StoreInterface;
// 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() override;
bool AdoptService(const ServiceRefPtr &service) override;
bool AbandonService(const ServiceRefPtr &service) override;
// Should not be called.
bool Save() override;
// Leaves |path| untouched and returns false.
bool GetStoragePath(base::FilePath */*path*/) override {
return false;
}
private:
static const char kFriendlyName[];
DISALLOW_COPY_AND_ASSIGN(EphemeralProfile);
};
} // namespace shill
#endif // SHILL_EPHEMERAL_PROFILE_H_