Chromium Code Reviews| Index: services/ui/demo/window_tree_data.h |
| diff --git a/services/ui/demo/window_tree_data.h b/services/ui/demo/window_tree_data.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a9390a61e8f683472459234e08d33bd46c83c332 |
| --- /dev/null |
| +++ b/services/ui/demo/window_tree_data.h |
| @@ -0,0 +1,60 @@ |
| +// Copyright 2017 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 SERVICES_UI_DEMO_WINDOW_TREE_DATA_H_ |
| +#define SERVICES_UI_DEMO_WINDOW_TREE_DATA_H_ |
| + |
| +#include "base/memory/ptr_util.h" |
| +#include "base/timer/timer.h" |
| + |
| +namespace aura { |
| +class Window; |
| +class WindowTreeHostMus; |
| +} // namespace aura |
| + |
| +namespace aura_extra { |
| +class ImageWindowDelegate; |
| +} // namespace aura_extra |
| + |
| +namespace ui { |
| +namespace demo { |
| + |
| +class WindowTreeData { |
| + public: |
| + explicit WindowTreeData(int square_size); |
| + virtual ~WindowTreeData(); |
|
kylechar
2017/02/15 14:35:06
Will this become a base class that needs a virtual
fwang
2017/02/15 15:02:53
Mmh, no. I guess I should remove the virtual keywo
|
| + |
| + // Initializes the window tree host and start drawing frames. |
| + void Init(std::unique_ptr<aura::WindowTreeHostMus> window_tree_host); |
| + bool IsInitialized() { return !!window_tree_host_; } |
| + |
| + private: |
| + // Draws one frame, incrementing the rotation angle. |
| + void DrawFrame(); |
| + |
| + // Helper function to retrieve the window to which we draw the bitmap. |
| + aura::Window* bitmap_window(); |
| + |
| + // The Window tree host corresponding to this data. |
| + std::unique_ptr<aura::WindowTreeHostMus> window_tree_host_; |
| + |
| + // Destroys itself when the window gets destroyed. |
| + aura_extra::ImageWindowDelegate* window_delegate_ = nullptr; |
| + |
| + // Timer for calling DrawFrame(). |
| + base::RepeatingTimer timer_; |
| + |
| + // Current rotation angle for drawing. |
| + double angle_ = 0.0; |
| + |
| + // Size in pixels of the square to draw. |
| + const int square_size_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(WindowTreeData); |
| +}; |
| + |
| +} // namespace demo |
| +} // namespace aura |
|
kylechar
2017/02/15 14:35:06
// namespace ui
fwang
2017/02/15 15:02:53
Acknowledged.
|
| + |
| +#endif // SERVICES_UI_DEMO_WINDOW_TREE_DATA_H_ |