Index: ui/views/test/native_widget_factory_mus.cc |
diff --git a/ui/views/test/native_widget_factory_mus.cc b/ui/views/test/native_widget_factory_mus.cc |
deleted file mode 100644 |
index 91bc6b1bbf0425f5cc306d30e927fe204e13979a..0000000000000000000000000000000000000000 |
--- a/ui/views/test/native_widget_factory_mus.cc |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-// Copyright 2016 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "ui/views/test/native_widget_factory.h" |
- |
-#include "ui/views/mus/window_manager_connection.h" |
-#include "ui/views/test/test_platform_native_widget.h" |
-#include "ui/views/widget/native_widget_aura.h" |
- |
-namespace views { |
-namespace test { |
- |
-NativeWidget* CreatePlatformNativeWidgetImpl( |
- const Widget::InitParams& init_params, |
- Widget* widget, |
- uint32_t type, |
- bool* destroyed) { |
- return new TestPlatformNativeWidget<NativeWidgetAura>( |
- widget, type == kStubCapture, destroyed); |
-} |
- |
-NativeWidget* CreatePlatformDesktopNativeWidgetImpl( |
- const Widget::InitParams& init_params, |
- Widget* widget, |
- bool* destroyed) { |
- return WindowManagerConnection::Get()->CreateNativeWidgetMus( |
- std::map<std::string, std::vector<uint8_t>>(), init_params, widget); |
-} |
- |
-} // namespace test |
-} // namespace views |