#include "chrome/browser/enterprise/remote_commands/job_profile_picker.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profile_manager.h"
namespace enterprise_commands {
namespace {
const char kProfilePathField[] = …;
}
JobProfilePicker::JobProfilePicker(Profile* profile)
: … { … }
JobProfilePicker::JobProfilePicker(ProfileManager* profile_manager)
: … { … }
JobProfilePicker::~JobProfilePicker() = default;
bool JobProfilePicker::ParseCommandPayload(
const base::Value::Dict& command_payload) { … }
Profile* JobProfilePicker::GetProfile() { … }
}