Index: components/mus/demo/mus_demo.h |
diff --git a/components/mus/demo/mus_demo.h b/components/mus/demo/mus_demo.h |
deleted file mode 100644 |
index af5cb60ed6d3cd53333bcb48832264783d69514b..0000000000000000000000000000000000000000 |
--- a/components/mus/demo/mus_demo.h |
+++ /dev/null |
@@ -1,92 +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_DEMO_MUS_DEMO_H_ |
-#define COMPONENTS_MUS_DEMO_MUS_DEMO_H_ |
- |
-#include <map> |
-#include <memory> |
-#include <string> |
-#include <vector> |
- |
-#include "base/callback.h" |
-#include "base/macros.h" |
-#include "base/timer/timer.h" |
-#include "components/mus/public/cpp/window_manager_delegate.h" |
-#include "components/mus/public/cpp/window_tree_client_delegate.h" |
-#include "services/shell/public/cpp/shell_client.h" |
-#include "third_party/skia/include/core/SkBitmap.h" |
- |
-namespace bitmap_uploader { |
-class BitmapUploader; |
-} |
- |
-namespace mus_demo { |
- |
-// A simple MUS Demo mojo app. This app connects to the mojo:mus, creates a new |
-// window and draws a spinning square in the center of the window. Provides a |
-// simple way to demonstrate that the graphic stack works as intended. |
-class MusDemo : public shell::ShellClient, |
- public mus::WindowTreeClientDelegate, |
- public mus::WindowManagerDelegate { |
- public: |
- MusDemo(); |
- ~MusDemo() override; |
- |
- private: |
- // shell::ShellClient: |
- void Initialize(shell::Connector* connector, |
- const shell::Identity& identity, |
- uint32_t id) override; |
- bool AcceptConnection(shell::Connection* connection) override; |
- |
- // WindowTreeClientDelegate: |
- void OnEmbed(mus::Window* root) override; |
- void OnDidDestroyClient(mus::WindowTreeClient* client) override; |
- void OnEventObserved(const ui::Event& event, mus::Window* target) override; |
- |
- // WindowManagerDelegate: |
- void SetWindowManagerClient(mus::WindowManagerClient* client) override; |
- bool OnWmSetBounds(mus::Window* window, gfx::Rect* bounds) override; |
- bool OnWmSetProperty( |
- mus::Window* window, |
- const std::string& name, |
- std::unique_ptr<std::vector<uint8_t>>* new_data) override; |
- mus::Window* OnWmCreateTopLevelWindow( |
- std::map<std::string, std::vector<uint8_t>>* properties) override; |
- void OnWmClientJankinessChanged(const std::set<mus::Window*>& client_windows, |
- bool janky) override; |
- void OnWmNewDisplay(mus::Window* window, |
- const display::Display& display) override; |
- void OnAccelerator(uint32_t id, const ui::Event& event) override; |
- |
- // Allocate a bitmap the same size as the window to draw into. |
- void AllocBitmap(); |
- |
- // Draws one frame, incrementing the rotation angle. |
- void DrawFrame(); |
- |
- shell::Connector* connector_ = nullptr; |
- |
- mus::Window* window_ = nullptr; |
- mus::WindowTreeClient* window_tree_client_ = nullptr; |
- |
- // Used to send frames to mus. |
- std::unique_ptr<bitmap_uploader::BitmapUploader> uploader_; |
- |
- // Bitmap that is the same size as our client window area. |
- SkBitmap bitmap_; |
- |
- // Timer for calling DrawFrame(). |
- base::RepeatingTimer timer_; |
- |
- // Current rotation angle for drawing. |
- double angle_ = 0.0; |
- |
- DISALLOW_COPY_AND_ASSIGN(MusDemo); |
-}; |
- |
-} // namespace mus_demo |
- |
-#endif // COMPONENTS_MUS_DEMO_MUS_DEMO_H_ |