1 // Copyright (c) 2012 The Chromium Embedded Framework Authors. 2 // Portions copyright (c) 2012 The Chromium Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 6 #ifndef CEF_LIBCEF_BROWSER_NATIVE_FILE_DIALOG_RUNNER_WIN_H_ 7 #define CEF_LIBCEF_BROWSER_NATIVE_FILE_DIALOG_RUNNER_WIN_H_ 8 #pragma once 9 10 #include "libcef/browser/file_dialog_runner.h" 11 12 class CefFileDialogRunnerWin : public CefFileDialogRunner { 13 public: 14 CefFileDialogRunnerWin(); 15 16 // CefFileDialogRunner methods: 17 void Run(AlloyBrowserHostImpl* browser, 18 const FileChooserParams& params, 19 RunFileChooserCallback callback) override; 20 }; 21 22 #endif // CEF_LIBCEF_BROWSER_NATIVE_FILE_DIALOG_RUNNER_WIN_H_ 23