Chromium Code Reviews| Index: ash/common/palette_delegate.h |
| diff --git a/ash/common/palette_delegate.h b/ash/common/palette_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..acde66cd60ecadd4bbb4fde8290a4f6e58fb4433 |
| --- /dev/null |
| +++ b/ash/common/palette_delegate.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ASH_COMMON_PALETTE_DELEGATE_H_ |
| +#define ASH_COMMON_PALETTE_DELEGATE_H_ |
| + |
| +#include "ash/ash_export.h" |
| +#include "base/macros.h" |
| + |
| +namespace ash { |
| + |
| +// This delegate allows the UI code in ash, e.g. |PaletteTray|, to perform |
| +// Chrome-specific actions. |
| +class PaletteDelegate { |
| + public: |
| + virtual ~PaletteDelegate() {} |
| + |
|
Daniel Erat
2016/08/05 15:48:52
maybe add a "TODO(jdufault): Add methods: http://c
jdufault
2016/08/05 19:03:37
Done.
|
| + private: |
| + DISALLOW_ASSIGN(PaletteDelegate); |
| +}; |
| + |
| +} // namespace ash |
| + |
| +#endif // ASH_COMMON_PALETTE_DELEGATE_H_ |