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

Side by Side Diff: third_party/WebKit/Source/core/layout/HitTestResult.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 bool HitTestResult::isSelected() const { 229 bool HitTestResult::isSelected() const {
230 if (!m_innerNode) 230 if (!m_innerNode)
231 return false; 231 return false;
232 232
233 if (LocalFrame* frame = m_innerNode->document().frame()) 233 if (LocalFrame* frame = m_innerNode->document().frame())
234 return frame->selection().contains(m_hitTestLocation.point()); 234 return frame->selection().contains(m_hitTestLocation.point());
235 return false; 235 return false;
236 } 236 }
237 237
238 String HitTestResult::title(TextDirection& dir) const { 238 String HitTestResult::title(TextDirection& dir) const {
239 dir = TextDirection::Ltr; 239 dir = TextDirection::kLtr;
240 // Find the title in the nearest enclosing DOM node. 240 // Find the title in the nearest enclosing DOM node.
241 // For <area> tags in image maps, walk the tree for the <area>, not the <img> 241 // For <area> tags in image maps, walk the tree for the <area>, not the <img>
242 // using it. 242 // using it.
243 if (m_innerNode.get()) 243 if (m_innerNode.get())
244 m_innerNode->updateDistribution(); 244 m_innerNode->updateDistribution();
245 for (Node* titleNode = m_innerNode.get(); titleNode; 245 for (Node* titleNode = m_innerNode.get(); titleNode;
246 titleNode = FlatTreeTraversal::parent(*titleNode)) { 246 titleNode = FlatTreeTraversal::parent(*titleNode)) {
247 if (titleNode->isElementNode()) { 247 if (titleNode->isElementNode()) {
248 String title = toElement(titleNode)->title(); 248 String title = toElement(titleNode)->title();
249 if (!title.isNull()) { 249 if (!title.isNull()) {
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 else if (isHTMLMapElement(m_innerNode)) 500 else if (isHTMLMapElement(m_innerNode))
501 imageMapImageElement = toHTMLMapElement(m_innerNode)->imageElement(); 501 imageMapImageElement = toHTMLMapElement(m_innerNode)->imageElement();
502 502
503 if (!imageMapImageElement) 503 if (!imageMapImageElement)
504 return m_innerNode.get(); 504 return m_innerNode.get();
505 505
506 return imageMapImageElement; 506 return imageMapImageElement;
507 } 507 }
508 508
509 } // namespace blink 509 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/FloatingObjects.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698