reflector.h revision 558790d6acca3451cf3a6b497803a5f07d0bec58
1// Copyright (c) 2013 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 UI_COMPOSITOR_REFLECTOR_H_
6#define UI_COMPOSITOR_REFLECTOR_H_
7
8#include "ui/compositor/compositor_export.h"
9
10namespace ui {
11
12class COMPOSITOR_EXPORT Reflector
13    : public base::RefCountedThreadSafe<Reflector> {
14 public:
15  Reflector() {}
16
17  virtual void OnMirroringCompositorResized() {}
18
19 protected:
20  friend class base::RefCountedThreadSafe<Reflector>;
21  virtual ~Reflector() {}
22
23  DISALLOW_COPY_AND_ASSIGN(Reflector);
24};
25
26}  // namespace ui
27
28#endif  // UI_COMPOSITOR_REFLECTOR_H_
29