| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #import "chrome/browser/ui/cocoa/web_contents_modal_dialog_manager_views_mac.h" | 5 #import "chrome/browser/ui/cocoa/web_contents_modal_dialog_manager_views_mac.h" |
| 6 #include "components/web_modal/web_contents_modal_dialog_manager.h" | 6 #include "components/web_modal/web_contents_modal_dialog_manager.h" |
| 7 | 7 |
| 8 namespace web_modal { | 8 namespace web_modal { |
| 9 | 9 |
| 10 SingleWebContentsDialogManager* | 10 SingleWebContentsDialogManager* |
| 11 WebContentsModalDialogManager::CreateNativeWebModalManager( | 11 WebContentsModalDialogManager::CreateNativeWebModalManager( |
| 12 gfx::NativeWindow dialog, | 12 gfx::NativeWindow dialog, |
| 13 web_modal::SingleWebContentsDialogManagerDelegate* delegate) { | 13 web_modal::SingleWebContentsDialogManagerDelegate* delegate, |
| 14 bool * independent_bounds, |
| 15 const char * kHasIndependentBoundsKey) { |
| 14 return new SingleWebContentsDialogManagerViewsMac(dialog, delegate); | 16 return new SingleWebContentsDialogManagerViewsMac(dialog, delegate); |
| 15 } | 17 } |
| 16 | 18 |
| 17 } // namespace web_modal | 19 } // namespace web_modal |
| OLD | NEW |