| Index: services/ui/public/cpp/tests/window_tree_client_private.cc
|
| diff --git a/services/ui/public/cpp/tests/window_tree_client_private.cc b/services/ui/public/cpp/tests/window_tree_client_private.cc
|
| deleted file mode 100644
|
| index 0ab32a4966f965ff018d209aacabdd0ba1d536e6..0000000000000000000000000000000000000000
|
| --- a/services/ui/public/cpp/tests/window_tree_client_private.cc
|
| +++ /dev/null
|
| @@ -1,72 +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 "services/ui/public/cpp/tests/window_tree_client_private.h"
|
| -
|
| -#include "services/ui/public/cpp/window.h"
|
| -#include "services/ui/public/cpp/window_private.h"
|
| -#include "services/ui/public/cpp/window_tree_client.h"
|
| -#include "ui/display/display.h"
|
| -
|
| -namespace ui {
|
| -
|
| -WindowTreeClientPrivate::WindowTreeClientPrivate(
|
| - WindowTreeClient* tree_client_impl)
|
| - : tree_client_impl_(tree_client_impl) {}
|
| -
|
| -WindowTreeClientPrivate::WindowTreeClientPrivate(Window* window)
|
| - : WindowTreeClientPrivate(window->window_tree()) {}
|
| -
|
| -WindowTreeClientPrivate::~WindowTreeClientPrivate() {}
|
| -
|
| -void WindowTreeClientPrivate::OnEmbed(mojom::WindowTree* window_tree) {
|
| - mojom::WindowDataPtr root_data(mojom::WindowData::New());
|
| - root_data->parent_id = 0;
|
| - root_data->window_id = next_window_id_++;
|
| - root_data->visible = true;
|
| - const int64_t display_id = 1;
|
| - const Id focused_window_id = 0;
|
| - tree_client_impl_->OnEmbedImpl(window_tree, 1, std::move(root_data),
|
| - display_id, focused_window_id, true);
|
| -}
|
| -
|
| -void WindowTreeClientPrivate::CallWmNewDisplayAdded(
|
| - const display::Display& display) {
|
| - mojom::WindowDataPtr root_data(mojom::WindowData::New());
|
| - root_data->parent_id = 0;
|
| - root_data->window_id = next_window_id_++;
|
| - root_data->visible = true;
|
| - root_data->bounds = gfx::Rect(display.bounds().size());
|
| - const bool parent_drawn = true;
|
| - tree_client_impl_->WmNewDisplayAddedImpl(display, std::move(root_data),
|
| - parent_drawn);
|
| -}
|
| -
|
| -void WindowTreeClientPrivate::CallOnWindowInputEvent(
|
| - Window* window,
|
| - std::unique_ptr<ui::Event> event) {
|
| - const uint32_t event_id = 0u;
|
| - const uint32_t observer_id = 0u;
|
| - tree_client_impl_->OnWindowInputEvent(event_id, window->server_id(),
|
| - std::move(event), observer_id);
|
| -}
|
| -
|
| -void WindowTreeClientPrivate::CallOnCaptureChanged(Window* new_capture,
|
| - Window* old_capture) {
|
| - tree_client_impl_->OnCaptureChanged(
|
| - new_capture ? WindowPrivate(new_capture).server_id() : 0,
|
| - old_capture ? WindowPrivate(old_capture).server_id() : 0);
|
| -}
|
| -
|
| -void WindowTreeClientPrivate::SetTreeAndClientId(mojom::WindowTree* window_tree,
|
| - ClientSpecificId client_id) {
|
| - tree_client_impl_->tree_ = window_tree;
|
| - tree_client_impl_->client_id_ = client_id;
|
| -}
|
| -
|
| -bool WindowTreeClientPrivate::HasPointerWatcher() {
|
| - return tree_client_impl_->has_pointer_watcher_;
|
| -}
|
| -
|
| -} // namespace ui
|
|
|