summaryrefslogtreecommitdiff
path: root/chromium/components/mus/ws/server_window_surface_manager_test_api.cc
blob: d65ae0f6376878dc5c9688fcf96044976fa8f7bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 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 "components/mus/ws/server_window_surface_manager_test_api.h"

#include "components/mus/ws/server_window.h"

namespace mus {
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 mus