Separate Simple Backend creation from initialization.
[chromium-blink-merge.git] / ui / web_dialogs / web_dialog_delegate.cc
blobed414101abe05a217ee5a3aa99f378992a1bbec6
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.
5 #include "ui/web_dialogs/web_dialog_delegate.h"
7 namespace ui {
9 std::string WebDialogDelegate::GetDialogName() const {
10 return std::string();
13 void WebDialogDelegate::GetMinimumDialogSize(gfx::Size* size) const {
14 GetDialogSize(size);
17 void WebDialogDelegate::OnDialogCloseFromWebUI(
18 const std::string& json_retval) {
19 OnDialogClosed(json_retval);
22 bool WebDialogDelegate::HandleContextMenu(
23 const content::ContextMenuParams& params) {
24 return false;
27 bool WebDialogDelegate::HandleOpenURLFromTab(
28 content::WebContents* source,
29 const content::OpenURLParams& params,
30 content::WebContents** out_new_contents) {
31 return false;
34 bool WebDialogDelegate::HandleAddNewContents(
35 content::WebContents* source,
36 content::WebContents* new_contents,
37 WindowOpenDisposition disposition,
38 const gfx::Rect& initial_pos,
39 bool user_gesture) {
40 return false;
43 } // namespace ui