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

Side by Side Diff: Source/core/rendering/HitTestResult.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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 | Annotate | Revision Log
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 22 matching lines...) Expand all
33 #include "core/html/HTMLAnchorElement.h" 33 #include "core/html/HTMLAnchorElement.h"
34 #include "core/html/HTMLAreaElement.h" 34 #include "core/html/HTMLAreaElement.h"
35 #include "core/html/HTMLImageElement.h" 35 #include "core/html/HTMLImageElement.h"
36 #include "core/html/HTMLInputElement.h" 36 #include "core/html/HTMLInputElement.h"
37 #include "core/html/HTMLMediaElement.h" 37 #include "core/html/HTMLMediaElement.h"
38 #include "core/html/HTMLTextAreaElement.h" 38 #include "core/html/HTMLTextAreaElement.h"
39 #include "core/html/HTMLVideoElement.h" 39 #include "core/html/HTMLVideoElement.h"
40 #include "core/html/parser/HTMLParserIdioms.h" 40 #include "core/html/parser/HTMLParserIdioms.h"
41 #include "core/frame/Frame.h" 41 #include "core/frame/Frame.h"
42 #include "core/page/FrameTree.h" 42 #include "core/page/FrameTree.h"
43 #include "core/platform/Scrollbar.h"
44 #include "core/rendering/RenderImage.h" 43 #include "core/rendering/RenderImage.h"
45 #include "core/rendering/RenderTextFragment.h" 44 #include "core/rendering/RenderTextFragment.h"
45 #include "platform/scroll/Scrollbar.h"
46 46
47 namespace WebCore { 47 namespace WebCore {
48 48
49 using namespace HTMLNames; 49 using namespace HTMLNames;
50 50
51 HitTestResult::HitTestResult() 51 HitTestResult::HitTestResult()
52 : m_isOverWidget(false) 52 : m_isOverWidget(false)
53 , m_isFirstLetter(false) 53 , m_isFirstLetter(false)
54 { 54 {
55 } 55 }
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 { 507 {
508 for (Node* node = m_innerNode.get(); node; node = NodeRenderingTraversal::pa rent(node)) { 508 for (Node* node = m_innerNode.get(); node; node = NodeRenderingTraversal::pa rent(node)) {
509 if (node->isElementNode()) 509 if (node->isElementNode())
510 return toElement(node); 510 return toElement(node);
511 } 511 }
512 512
513 return 0; 513 return 0;
514 } 514 }
515 515
516 } // namespace WebCore 516 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/GraphicsContextAnnotator.cpp ('k') | Source/core/rendering/ImageQualityController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698