Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(909)

Unified Diff: Source/core/frame/SmartClip.cpp

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/html/HTMLAppletElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/SmartClip.cpp
diff --git a/Source/core/frame/SmartClip.cpp b/Source/core/frame/SmartClip.cpp
index 9d285cb4fc03a4a614280b7c299b57b7a8b23aca..7259267f3c9be7bb1b0b8e8fb53e644dc8fcd54b 100644
--- a/Source/core/frame/SmartClip.cpp
+++ b/Source/core/frame/SmartClip.cpp
@@ -234,7 +234,7 @@ String SmartClip::extractTextFromNode(Node* node)
StringBuilder result;
for (Node& currentNode : NodeTraversal::inclusiveDescendantsOf(*node)) {
- const LayoutStyle* style = currentNode.computedStyle();
+ const ComputedStyle* style = currentNode.ensureComputedStyle();
if (style && style->userSelect() == SELECT_NONE)
continue;
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/html/HTMLAppletElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698