| Index: services/ui/public/cpp/tests/test_window_tree.cc
|
| diff --git a/services/ui/public/cpp/tests/test_window_tree.cc b/services/ui/public/cpp/tests/test_window_tree.cc
|
| deleted file mode 100644
|
| index 8e23c2f3041818c9ca69cdfbac438a43fe590eb4..0000000000000000000000000000000000000000
|
| --- a/services/ui/public/cpp/tests/test_window_tree.cc
|
| +++ /dev/null
|
| @@ -1,194 +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/public/cpp/tests/test_window_tree.h"
|
| -
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -
|
| -namespace ui {
|
| -
|
| -TestWindowTree::TestWindowTree()
|
| - : got_change_(false), change_id_(0), window_id_(0u) {}
|
| -
|
| -TestWindowTree::~TestWindowTree() {}
|
| -
|
| -bool TestWindowTree::GetAndClearChangeId(uint32_t* change_id) {
|
| - if (!got_change_)
|
| - return false;
|
| -
|
| - if (change_id)
|
| - *change_id = change_id_;
|
| - got_change_ = false;
|
| - return true;
|
| -}
|
| -
|
| -bool TestWindowTree::WasEventAcked(uint32_t event_id) const {
|
| - return acked_events_.count(event_id);
|
| -}
|
| -
|
| -void TestWindowTree::NewWindow(
|
| - uint32_t change_id,
|
| - uint32_t window_id,
|
| - const base::Optional<std::unordered_map<std::string, std::vector<uint8_t>>>&
|
| - properties) {}
|
| -
|
| -void TestWindowTree::NewTopLevelWindow(
|
| - uint32_t change_id,
|
| - uint32_t window_id,
|
| - const std::unordered_map<std::string, std::vector<uint8_t>>& properties) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| - window_id_ = window_id;
|
| -}
|
| -
|
| -void TestWindowTree::DeleteWindow(uint32_t change_id, uint32_t window_id) {}
|
| -
|
| -void TestWindowTree::SetWindowBounds(uint32_t change_id,
|
| - uint32_t window_id,
|
| - const gfx::Rect& bounds) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::SetClientArea(
|
| - uint32_t window_id,
|
| - const gfx::Insets& insets,
|
| - const base::Optional<std::vector<gfx::Rect>>& additional_client_areas) {}
|
| -
|
| -void TestWindowTree::SetHitTestMask(uint32_t window_id,
|
| - const base::Optional<gfx::Rect>& mask) {}
|
| -
|
| -void TestWindowTree::SetCanAcceptDrops(uint32_t window_id, bool accepts_drops) {
|
| -}
|
| -
|
| -void TestWindowTree::SetWindowVisibility(uint32_t change_id,
|
| - uint32_t window_id,
|
| - bool visible) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::SetWindowProperty(
|
| - uint32_t change_id,
|
| - uint32_t window_id,
|
| - const std::string& name,
|
| - const base::Optional<std::vector<uint8_t>>& value) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::SetWindowOpacity(uint32_t change_id,
|
| - uint32_t window_id,
|
| - float opacity) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::AttachCompositorFrameSink(
|
| - uint32_t window_id,
|
| - mojo::InterfaceRequest<cc::mojom::MojoCompositorFrameSink> surface,
|
| - cc::mojom::MojoCompositorFrameSinkClientPtr client) {}
|
| -
|
| -void TestWindowTree::AddWindow(uint32_t change_id,
|
| - uint32_t parent,
|
| - uint32_t child) {}
|
| -
|
| -void TestWindowTree::RemoveWindowFromParent(uint32_t change_id,
|
| - uint32_t window_id) {}
|
| -
|
| -void TestWindowTree::AddTransientWindow(uint32_t change_id,
|
| - uint32_t window_id,
|
| - uint32_t transient_window_id) {}
|
| -
|
| -void TestWindowTree::RemoveTransientWindowFromParent(
|
| - uint32_t change_id,
|
| - uint32_t transient_window_id) {}
|
| -
|
| -void TestWindowTree::SetModal(uint32_t change_id, uint32_t window_id) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::ReorderWindow(uint32_t change_id,
|
| - uint32_t window_id,
|
| - uint32_t relative_window_id,
|
| - mojom::OrderDirection direction) {}
|
| -
|
| -void TestWindowTree::GetWindowTree(uint32_t window_id,
|
| - const GetWindowTreeCallback& callback) {}
|
| -
|
| -void TestWindowTree::SetCapture(uint32_t change_id, uint32_t window_id) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::ReleaseCapture(uint32_t change_id, uint32_t window_id) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::StartPointerWatcher(bool want_moves) {}
|
| -
|
| -void TestWindowTree::StopPointerWatcher() {}
|
| -
|
| -void TestWindowTree::Embed(uint32_t window_id,
|
| - mojom::WindowTreeClientPtr client,
|
| - uint32_t flags,
|
| - const EmbedCallback& callback) {}
|
| -
|
| -void TestWindowTree::SetFocus(uint32_t change_id, uint32_t window_id) {
|
| - got_change_ = true;
|
| - change_id_ = change_id;
|
| -}
|
| -
|
| -void TestWindowTree::SetCanFocus(uint32_t window_id, bool can_focus) {}
|
| -
|
| -void TestWindowTree::SetCanAcceptEvents(uint32_t window_id,
|
| - bool can_accept_events) {}
|
| -
|
| -void TestWindowTree::SetPredefinedCursor(uint32_t change_id,
|
| - uint32_t window_id,
|
| - ui::mojom::Cursor cursor_id) {}
|
| -
|
| -void TestWindowTree::SetWindowTextInputState(uint32_t window_id,
|
| - mojo::TextInputStatePtr state) {}
|
| -
|
| -void TestWindowTree::SetImeVisibility(uint32_t window_id,
|
| - bool visible,
|
| - mojo::TextInputStatePtr state) {}
|
| -
|
| -void TestWindowTree::OnWindowInputEventAck(uint32_t event_id,
|
| - ui::mojom::EventResult result) {
|
| - EXPECT_FALSE(acked_events_.count(event_id));
|
| - acked_events_.insert(event_id);
|
| -}
|
| -
|
| -void TestWindowTree::DeactivateWindow(uint32_t window_id) {}
|
| -
|
| -void TestWindowTree::StackAtTop(uint32_t change_id, uint32_t window_id) {}
|
| -
|
| -void TestWindowTree::GetWindowManagerClient(
|
| - mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) {}
|
| -
|
| -void TestWindowTree::GetCursorLocationMemory(
|
| - const GetCursorLocationMemoryCallback& callback) {
|
| - callback.Run(mojo::ScopedSharedBufferHandle());
|
| -}
|
| -
|
| -void TestWindowTree::PerformDragDrop(
|
| - uint32_t change_id,
|
| - uint32_t source_window_id,
|
| - const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data,
|
| - uint32_t drag_operation) {}
|
| -
|
| -void TestWindowTree::CancelDragDrop(uint32_t window_id) {}
|
| -
|
| -void TestWindowTree::PerformWindowMove(uint32_t change_id,
|
| - uint32_t window_id,
|
| - mojom::MoveLoopSource source,
|
| - const gfx::Point& cursor_location) {}
|
| -
|
| -void TestWindowTree::CancelWindowMove(uint32_t window_id) {}
|
| -
|
| -} // namespace ui
|
|
|