Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(509)

Unified Diff: components/mus/public/cpp/tests/window_tree_client_private.h

Issue 2119963002: Move mus to //services/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/mus/public/cpp/tests/window_tree_client_private.h
diff --git a/components/mus/public/cpp/tests/window_tree_client_private.h b/components/mus/public/cpp/tests/window_tree_client_private.h
deleted file mode 100644
index 0612bbf721af6120967abc12679c838c4f68c570..0000000000000000000000000000000000000000
--- a/components/mus/public/cpp/tests/window_tree_client_private.h
+++ /dev/null
@@ -1,60 +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.
-
-#ifndef COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_
-#define COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_
-
-#include <stdint.h>
-
-#include <memory>
-
-#include "base/macros.h"
-#include "components/mus/common/types.h"
-
-namespace display {
-class Display;
-}
-
-namespace ui {
-class Event;
-}
-
-namespace mus {
-namespace mojom {
-class WindowTree;
-}
-
-class Window;
-class WindowTreeClient;
-
-// Use to access implementation details of WindowTreeClient.
-class WindowTreeClientPrivate {
- public:
- explicit WindowTreeClientPrivate(WindowTreeClient* tree_client_impl);
- explicit WindowTreeClientPrivate(Window* window);
- ~WindowTreeClientPrivate();
-
- uint32_t event_observer_id();
-
- // Calls OnEmbed() on the WindowTreeClient.
- void OnEmbed(mojom::WindowTree* window_tree);
-
- void CallWmNewDisplayAdded(const display::Display& display);
-
- // Pretends that |event| has been received from the window server.
- void CallOnWindowInputEvent(Window* window, std::unique_ptr<ui::Event> event);
-
- // Sets the WindowTree and client id.
- void SetTreeAndClientId(mojom::WindowTree* window_tree,
- ClientSpecificId client_id);
-
- private:
- WindowTreeClient* tree_client_impl_;
-
- DISALLOW_COPY_AND_ASSIGN(WindowTreeClientPrivate);
-};
-
-} // namespace mus
-
-#endif // COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_

Powered by Google App Engine
This is Rietveld 408576698