blob: 71b1e5770ea1f52cb20d8c64d85e1aa5ff5c0a3f [file] [log] [blame]
// Copyright 2013 The Flutter 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 ACCESSIBILITY_BASE_MACROS_H_
#define ACCESSIBILITY_BASE_MACROS_H_
#define BASE_DISALLOW_COPY_AND_ASSIGN(TypeName) \
TypeName(const TypeName&) = delete; \
TypeName& operator=(const TypeName&) = delete
#endif // ACCESSIBILITY_BASE_MACROS_H_