| Index: third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/SmartClip.cpp b/third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| index bd1070ac2a98f8d0fa3be5e676aea2041f24aab0..ea23e020e0e8c7cfb71bdcc71c3617dca9a87e32 100644
|
| --- a/third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/SmartClip.cpp
|
| @@ -243,7 +243,7 @@ String SmartClip::ExtractTextFromNode(Node* node) {
|
| StringBuilder result;
|
| for (Node& current_node : NodeTraversal::InclusiveDescendantsOf(*node)) {
|
| const ComputedStyle* style = current_node.EnsureComputedStyle();
|
| - if (style && style->UserSelect() == SELECT_NONE)
|
| + if (style && style->UserSelect() == EUserSelect::kNone)
|
| continue;
|
|
|
| if (Node* node_from_frame = NodeInsideFrame(¤t_node))
|
|
|