18 lines
536 B
C++
18 lines
536 B
C++
// Copyright (c) 2022 The Chromium Embedded Framework Authors.
|
|
// Portions 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 CEF_LIBCEF_BROWSER_FILE_DIALOG_RUNNER_H_
|
|
#define CEF_LIBCEF_BROWSER_FILE_DIALOG_RUNNER_H_
|
|
#pragma once
|
|
|
|
namespace file_dialog_runner {
|
|
|
|
// One-time registration on startup.
|
|
void RegisterFactory();
|
|
|
|
} // namespace file_dialog_runner
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_FILE_DIALOG_RUNNER_H_
|