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

Side by Side Diff: blimp/engine/app/ui/blimp_window_tree_host.h

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Use consistent comment style in //chrome Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef BLIMP_ENGINE_APP_UI_BLIMP_WINDOW_TREE_HOST_H_
6 #define BLIMP_ENGINE_APP_UI_BLIMP_WINDOW_TREE_HOST_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "ui/aura/window_tree_host_platform.h"
12
13 namespace blimp {
14 namespace engine {
15
16 // This WindowTreeHost represents a top-level window in a blimp client, and its
17 // children.
18 // Note that the Aura WindowTreeHost impl creates a compositor internally,
19 // which will eventually get replaced with client-side rendering.
20 class BlimpWindowTreeHost : public aura::WindowTreeHostPlatform {
21 public:
22 BlimpWindowTreeHost();
23 ~BlimpWindowTreeHost() override;
24
25 private:
26 // aura::WindowTreeHostPlatform overrides.
27 void OnAcceleratedWidgetAvailable(gfx::AcceleratedWidget widget,
28 float device_pixel_ratio) override;
29
30 DISALLOW_COPY_AND_ASSIGN(BlimpWindowTreeHost);
31 };
32
33 } // namespace engine
34 } // namespace blimp
35
36 #endif // BLIMP_ENGINE_APP_UI_BLIMP_WINDOW_TREE_HOST_H_
OLDNEW
« no previous file with comments | « blimp/engine/app/ui/blimp_window_parenting_client.cc ('k') | blimp/engine/app/ui/blimp_window_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698