mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-04-23 11:27:58 +08:00
24 lines
676 B
C++
24 lines
676 B
C++
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "browser/file_dialog.h"
|
|
|
|
namespace file_dialog {
|
|
|
|
bool ShowOpenDialog(const std::string& title,
|
|
const base::FilePath& default_path,
|
|
int properties,
|
|
std::vector<base::FilePath>* paths) {
|
|
return false;
|
|
}
|
|
|
|
bool ShowSaveDialog(atom::NativeWindow* window,
|
|
const std::string& title,
|
|
const base::FilePath& default_path,
|
|
base::FilePath* path) {
|
|
return false;
|
|
}
|
|
|
|
} // namespace file_dialog
|