OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/web_dialogs/web_dialog_delegate.h" | 5 #include "ui/web_dialogs/web_dialog_delegate.h" |
6 | 6 |
7 namespace ui { | 7 namespace ui { |
8 | 8 |
9 std::string WebDialogDelegate::GetDialogName() const { | 9 std::string WebDialogDelegate::GetDialogName() const { |
10 return std::string(); | 10 return std::string(); |
(...skipping 25 matching lines...) Expand all Loading... |
36 content::WebContents* source, | 36 content::WebContents* source, |
37 const content::OpenURLParams& params, | 37 const content::OpenURLParams& params, |
38 content::WebContents** out_new_contents) { | 38 content::WebContents** out_new_contents) { |
39 return false; | 39 return false; |
40 } | 40 } |
41 | 41 |
42 bool WebDialogDelegate::HandleAddNewContents( | 42 bool WebDialogDelegate::HandleAddNewContents( |
43 content::WebContents* source, | 43 content::WebContents* source, |
44 content::WebContents* new_contents, | 44 content::WebContents* new_contents, |
45 WindowOpenDisposition disposition, | 45 WindowOpenDisposition disposition, |
46 const gfx::Rect& initial_pos, | 46 const gfx::Rect& initial_rect, |
47 bool user_gesture) { | 47 bool user_gesture) { |
48 return false; | 48 return false; |
49 } | 49 } |
50 | 50 |
51 bool WebDialogDelegate::HandleShouldCreateWebContents() { | 51 bool WebDialogDelegate::HandleShouldCreateWebContents() { |
52 return true; | 52 return true; |
53 } | 53 } |
54 | 54 |
55 } // namespace ui | 55 } // namespace ui |
OLD | NEW |