blob: bc796c6c3a2093684481bc53b0ae8cace7c74fb6 [file] [log] [blame]
// Copyright 2019 The Chromium 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 CHROME_BROWSER_CHROMEOS_PLUGIN_VM_PLUGIN_VM_FILES_H_
#define CHROME_BROWSER_CHROMEOS_PLUGIN_VM_PLUGIN_VM_FILES_H_
#include "base/callback.h"
class Profile;
namespace plugin_vm {
// Ensure default shared dir <cryptohome>/MyFiles/PluginVm exists. Invokes
// |callback| with true if dir is successfully created or already exists.
void EnsureDefaultSharedDirExists(Profile* profile,
base::OnceCallback<void(bool)> callback);
} // namespace plugin_vm
#endif // CHROME_BROWSER_CHROMEOS_PLUGIN_VM_PLUGIN_VM_FILES_H_