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

Side by Side Diff: ui/views/mus/mus_property_mirror.h

Issue 2655513002: mash: Relay some Chrome aura window properties to Ash. (Closed)
Patch Set: cleanup. Created 3 years, 10 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
« ui/views/mus/mus_client.h ('K') | « ui/views/mus/mus_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
sky 2017/01/27 20:10:45 2017
msw 2017/01/27 21:19:25 Done.
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 UI_VIEWS_MUS_MUS_PROPERTY_MIRROR_H_
6 #define UI_VIEWS_MUS_MUS_PROPERTY_MIRROR_H_
7
8 #include "ui/views/mus/mus_export.h"
9
10 namespace views {
11
12 // Facilitates copying mus content window properties to mash frame root windows.
13 class VIEWS_MUS_EXPORT MusPropertyMirror {
14 public:
15 virtual ~MusPropertyMirror() {}
16
17 // Called when a property with the given |key| has changed for |window|.
18 virtual void MirrorPropertyFromWidgetWindowToRootWindow(aura::Window* window,
sky 2017/01/27 20:10:45 I'm surprised you don't need to forward declare wi
msw 2017/01/27 21:19:25 Done (and added aura::Window fwd decl).
19 const void* key) = 0;
20 };
21
22 } // namespace views
23
24 #endif // UI_VIEWS_MUS_MUS_PROPERTY_MIRROR_H_
OLDNEW
« ui/views/mus/mus_client.h ('K') | « ui/views/mus/mus_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698