1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROME_SELECT_FILE_DIALOG_FACTORY_WIN_H_
6 #define CHROME_BROWSER_CHROME_SELECT_FILE_DIALOG_FACTORY_WIN_H_
8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h"
11 #include "ui/shell_dialogs/select_file_dialog_factory.h"
14 class SequencedTaskRunner
;
17 // Implements a Select File dialog that delegates to a Metro file picker on
18 // Metro and to a utility process otherwise. The utility process is used in
19 // order to isolate the Chrome browser process from potential instability
20 // caused by Shell extension modules loaded by GetOpenFileName.
21 class ChromeSelectFileDialogFactory
: public ui::SelectFileDialogFactory
{
23 // Uses |blocking_task_runner| to perform IPC with the utility process.
24 explicit ChromeSelectFileDialogFactory(
25 const scoped_refptr
<base::SequencedTaskRunner
>& blocking_task_runner
);
26 ~ChromeSelectFileDialogFactory() override
;
28 // ui::SelectFileDialogFactory implementation
29 ui::SelectFileDialog
* Create(ui::SelectFileDialog::Listener
* listener
,
30 ui::SelectFilePolicy
* policy
) override
;
33 scoped_refptr
<base::SequencedTaskRunner
> blocking_task_runner_
;
35 DISALLOW_COPY_AND_ASSIGN(ChromeSelectFileDialogFactory
);
38 #endif // CHROME_BROWSER_CHROME_SELECT_FILE_DIALOG_FACTORY_WIN_H_