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( | |
| 14 views::internal::NativeWidgetDelegate* native_widget_delegate, | |
| 15 views::DesktopNativeWidgetAura* desktop_native_widget_aura, | |
| 16 BrowserView* browser_view, | |
| 17 BrowserFrame* browser_frame) { | |
| 18 NOTIMPLEMENTED(); | |
|
tonikitoo
2016/11/08 15:47:57
not sure if the "rebase" version got NOTIMPLEMENTE
Tom (Use chromium acct)
2016/11/08 18:21:48
oops, changed back to NOTREACHED
| |
| 19 return nullptr; | |
| 20 } | |
| OLD | NEW |