blob: 71195966e33563f2d53a0649f9dd20d70aa6404a [file] [log] [blame]
// 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.
#include "chrome/browser/ui/simple_message_box.h"
#include <utility>
#include "base/callback.h"
#include "base/notreached.h"
namespace chrome {
void ShowWarningMessageBox(gfx::NativeWindow parent,
const std::u16string& title,
const std::u16string& message) {
NOTIMPLEMENTED();
}
MessageBoxResult ShowQuestionMessageBox(gfx::NativeWindow parent,
const std::u16string& title,
const std::u16string& message) {
NOTIMPLEMENTED();
return MESSAGE_BOX_RESULT_NO;
}
void ShowWarningMessageBoxWithCheckbox(
gfx::NativeWindow parent,
const std::u16string& title,
const std::u16string& message,
const std::u16string& checkbox_text,
base::OnceCallback<void(bool checked)> callback) {
NOTIMPLEMENTED();
std::move(callback).Run(false);
}
} // namespace chrome