| Index: third_party/WebKit/Source/core/css/PropertyRegistration.h
|
| diff --git a/third_party/WebKit/Source/core/css/PropertyRegistration.h b/third_party/WebKit/Source/core/css/PropertyRegistration.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a76cb069e72489baf4081853357feadb505d8872
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/PropertyRegistration.h
|
| @@ -0,0 +1,26 @@
|
| +// 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 PropertyRegistration_h
|
| +#define PropertyRegistration_h
|
| +
|
| +#include "wtf/Allocator.h"
|
| +#include "wtf/text/WTFString.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class ExceptionState;
|
| +class ExecutionContext;
|
| +class PropertyDescriptor;
|
| +
|
| +class PropertyRegistration {
|
| + STATIC_ONLY(PropertyRegistration);
|
| +public:
|
| + static void registerProperty(ExecutionContext*, const PropertyDescriptor&, ExceptionState&);
|
| + static void unregisterProperty(ExecutionContext*, const String&, ExceptionState&);
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // PropertyRegistration_h
|
|
|