Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 "base/logging.h" | |
| 6 #include "chrome/browser/ui/views/frame/browser_desktop_window_tree_host.h" | |
| 7 | |
| 8 //////////////////////////////////////////////////////////////////////////////// | |
| 9 // BrowserDesktopWindowTreeHost, public: | |
| 10 | |
| 11 // static | |
| 12 BrowserDesktopWindowTreeHost* | |
| 13 BrowserDesktopWindowTreeHost::CreateBrowserDesktopWindowTreeHost( | |
|
rjkroege
2016/11/07 19:54:15
What does --mash Chrome use in place of this? It a
Tom (Use chromium acct)
2016/11/07 20:07:00
The only impls I see are BDWTHWin and BDWTHX11, so
rjkroege
2016/11/07 23:01:22
Yes. WindowPort and friends is the solution for th
Tom (Use chromium acct)
2016/11/07 23:21:03
Acknowledged.
| |
| 14 views::internal::NativeWidgetDelegate* native_widget_delegate, | |
| 15 views::DesktopNativeWidgetAura* desktop_native_widget_aura, | |
| 16 BrowserView* browser_view, | |
| 17 BrowserFrame* browser_frame) { | |
| 18 NOTIMPLEMENTED(); | |
|
Tom (Use chromium acct)
2016/11/07 19:40:45
I'm not sure what the right way to stub out Browse
rjkroege
2016/11/07 23:01:22
NOTREACHED(); We should never get here.
Tom (Use chromium acct)
2016/11/07 23:21:03
Done.
| |
| 19 return nullptr; | |
| 20 } | |
| OLD | NEW |