1// Copyright (c) 2012 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
5#include "chrome/browser/ui/simple_message_box.h"
6
7#include "base/logging.h"
8
9namespace chrome {
10
11MessageBoxResult ShowMessageBox(gfx::NativeWindow parent,
12                                const base::string16& title,
13                                const base::string16& message,
14                                MessageBoxType type) {
15  NOTIMPLEMENTED();
16  return MESSAGE_BOX_RESULT_NO;
17}
18
19}  // namespace chrome
20