| Index: services/ui/ws/server_window_surface_manager_test_api.cc
|
| diff --git a/services/ui/ws/server_window_surface_manager_test_api.cc b/services/ui/ws/server_window_surface_manager_test_api.cc
|
| deleted file mode 100644
|
| index 79ccce773989fb127fc477a03b532f855f93182f..0000000000000000000000000000000000000000
|
| --- a/services/ui/ws/server_window_surface_manager_test_api.cc
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -// Copyright 2015 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 "services/ui/ws/server_window_surface_manager_test_api.h"
|
| -
|
| -#include "services/ui/ws/server_window.h"
|
| -
|
| -namespace ui {
|
| -namespace ws {
|
| -
|
| -ServerWindowSurfaceManagerTestApi::ServerWindowSurfaceManagerTestApi(
|
| - ServerWindowSurfaceManager* manager)
|
| - : manager_(manager) {}
|
| -
|
| -ServerWindowSurfaceManagerTestApi::~ServerWindowSurfaceManagerTestApi() {}
|
| -
|
| -void ServerWindowSurfaceManagerTestApi::CreateEmptyDefaultSurface() {
|
| - manager_->type_to_surface_map_[mojom::SurfaceType::DEFAULT] = nullptr;
|
| -}
|
| -
|
| -void ServerWindowSurfaceManagerTestApi::DestroyDefaultSurface() {
|
| - manager_->type_to_surface_map_.erase(mojom::SurfaceType::DEFAULT);
|
| -}
|
| -
|
| -void EnableHitTest(ServerWindow* window) {
|
| - ServerWindowSurfaceManagerTestApi test_api(
|
| - window->GetOrCreateSurfaceManager());
|
| - test_api.CreateEmptyDefaultSurface();
|
| -}
|
| -
|
| -void DisableHitTest(ServerWindow* window) {
|
| - ServerWindowSurfaceManagerTestApi test_api(
|
| - window->GetOrCreateSurfaceManager());
|
| - test_api.DestroyDefaultSurface();
|
| -}
|
| -
|
| -} // namespace ws
|
| -} // namespace ui
|
|
|