| Index: third_party/WebKit/Source/core/events/MutationEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/MutationEvent.h b/third_party/WebKit/Source/core/events/MutationEvent.h
|
| index c11731151b8e3abd635f9d3030fe3957bb38f438..7db68e261421daa9d9fd5fa32d89ae79fb13ff0d 100644
|
| --- a/third_party/WebKit/Source/core/events/MutationEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/MutationEvent.h
|
| @@ -35,9 +35,9 @@ public:
|
| ~MutationEvent() override;
|
|
|
| enum AttrChangeType {
|
| - MODIFICATION = 1, // NOLINT
|
| - ADDITION = 2, // NOLINT
|
| - REMOVAL = 3 // NOLINT
|
| + kModification = 1,
|
| + kAddition = 2,
|
| + kRemoval = 3
|
| };
|
|
|
| static MutationEvent* create()
|
|
|