summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/user_data_dir_dialog.h
blob: 7b25933a08e9eb0bf91aad13a14c3610e52379fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2012 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_UI_USER_DATA_DIR_DIALOG_H_
#define CHROME_BROWSER_UI_USER_DATA_DIR_DIALOG_H_

class FilePath;

namespace chrome {

// Shows a user data directory picker dialog. The method blocks while the dialog
// is showing. If the user picks a directory, this method returns the chosen
// directory. |user_data_dir| is the value of the directory we were not able to
// use.
FilePath ShowUserDataDirDialog(const FilePath& user_data_dir);

}  // namespace chrome

#endif  // CHROME_BROWSER_UI_USER_DATA_DIR_DIALOG_H_