shell_dialog_linux.h 646 B

123456789101112131415161718192021
  1. // Copyright (c) 2013 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.
  4. #ifndef UI_SHELL_DIALOGS_SHELL_DIALOG_LINUX_H_
  5. #define UI_SHELL_DIALOGS_SHELL_DIALOG_LINUX_H_
  6. #include "ui/shell_dialogs/shell_dialogs_export.h"
  7. namespace shell_dialog_linux {
  8. // TODO(thomasanderson): Remove Initialize() and Finalize().
  9. // Should be called before the first call to CreateSelectFileDialog.
  10. SHELL_DIALOGS_EXPORT void Initialize();
  11. SHELL_DIALOGS_EXPORT void Finalize();
  12. } // namespace shell_dialog_linux
  13. #endif // UI_SHELL_DIALOGS_SHELL_DIALOG_LINUX_H_