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

Side by Side Diff: chromecast/graphics/cast_window_manager_default.h

Issue 2643553002: [Chromecast] Reuse the Aura window manager across receiver apps. (Closed)
Patch Set: applied reviewer feedback 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 2017 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 CHROMECAST_GRAPHICS_CAST_WINDOW_MANAGER_DEFAULT_H_
6 #define CHROMECAST_GRAPHICS_CAST_WINDOW_MANAGER_DEFAULT_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "chromecast/graphics/cast_window_manager.h"
12
13 namespace chromecast {
14
15 class CastWindowManagerDefault : public CastWindowManager {
16 public:
17 ~CastWindowManagerDefault() override;
18
19 // CastWindowManager implementation:
20 void TearDown() override;
21 void AddWindow(gfx::NativeView window) override;
22
23 private:
24 friend class CastWindowManager;
25
26 // This class should only be instantiated by CastWindowManager::Create.
27 CastWindowManagerDefault();
28
29 DISALLOW_COPY_AND_ASSIGN(CastWindowManagerDefault);
30 };
31
32 } // namespace chromecast
33
34 #endif // CHROMECAST_GRAPHICS_CAST_WINDOW_MANAGER_DEFAULT_H_
OLDNEW
« no previous file with comments | « chromecast/graphics/cast_window_manager_aura.cc ('k') | chromecast/graphics/cast_window_manager_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698