| Index: chrome/browser/ui/views/frame/native_browser_frame_factory_aurawin.cc
|
| diff --git a/chrome/browser/ui/views/frame/native_browser_frame_factory_aurawin.cc b/chrome/browser/ui/views/frame/native_browser_frame_factory_aurawin.cc
|
| index 8b20e3a304f1a1bff31773926189041c0d91844a..3f157822a0871b6d3265c57207a01f49b63a1fa5 100644
|
| --- a/chrome/browser/ui/views/frame/native_browser_frame_factory_aurawin.cc
|
| +++ b/chrome/browser/ui/views/frame/native_browser_frame_factory_aurawin.cc
|
| @@ -5,12 +5,17 @@
|
| #include "chrome/browser/ui/views/frame/native_browser_frame_factory.h"
|
|
|
| #include "ash/shell.h"
|
| +#include "chrome/browser/mojo_runner_util.h"
|
| #include "chrome/browser/ui/views/frame/browser_frame_ashwin.h"
|
| #include "chrome/browser/ui/views/frame/desktop_browser_frame_aura.h"
|
| +#include "chrome/browser/ui/views/frame/mus_browser_frame.h"
|
|
|
| NativeBrowserFrame* NativeBrowserFrameFactory::Create(
|
| BrowserFrame* browser_frame,
|
| BrowserView* browser_view) {
|
| + if (IsRunningInMojoRunner())
|
| + return new MusBrowserFrame(browser_frame, browser_view);
|
| +
|
| if (ShouldCreateForAshDesktop(browser_view))
|
| return new BrowserFrameAshWin(browser_frame, browser_view);
|
|
|
|
|