Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |