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

Side by Side Diff: Source/core/page/FocusController.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/EventSource.h ('k') | Source/core/page/Frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nuanti Ltd. 3 * Copyright (C) 2008 Nuanti Ltd.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "HTMLImageElement.h" 46 #include "HTMLImageElement.h"
47 #include "HTMLNames.h" 47 #include "HTMLNames.h"
48 #include "HitTestResult.h" 48 #include "HitTestResult.h"
49 #include "KeyboardEvent.h" 49 #include "KeyboardEvent.h"
50 #include "NodeRenderingTraversal.h" 50 #include "NodeRenderingTraversal.h"
51 #include "NodeTraversal.h" 51 #include "NodeTraversal.h"
52 #include "Page.h" 52 #include "Page.h"
53 #include "Range.h" 53 #include "Range.h"
54 #include "RenderObject.h" 54 #include "RenderObject.h"
55 #include "RenderWidget.h" 55 #include "RenderWidget.h"
56 #include "ScrollAnimator.h"
57 #include "Settings.h" 56 #include "Settings.h"
58 #include "ShadowRoot.h" 57 #include "ShadowRoot.h"
59 #include "SpatialNavigation.h" 58 #include "SpatialNavigation.h"
60 #include "Widget.h"
61 #include "core/accessibility/AXObjectCache.h" 59 #include "core/accessibility/AXObjectCache.h"
60 #include "core/platform/ScrollAnimator.h"
61 #include "core/platform/Widget.h"
62 #include "htmlediting.h" // For firstPositionInOrBeforeNode 62 #include "htmlediting.h" // For firstPositionInOrBeforeNode
63 63
64 namespace WebCore { 64 namespace WebCore {
65 65
66 using namespace HTMLNames; 66 using namespace HTMLNames;
67 using namespace std; 67 using namespace std;
68 68
69 FocusNavigationScope::FocusNavigationScope(TreeScope* treeScope) 69 FocusNavigationScope::FocusNavigationScope(TreeScope* treeScope)
70 : m_rootTreeScope(treeScope) 70 : m_rootTreeScope(treeScope)
71 { 71 {
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 startingRect = nodeRectInAbsoluteCoordinates(container, true /* ignore b order */); 871 startingRect = nodeRectInAbsoluteCoordinates(container, true /* ignore b order */);
872 container = scrollableEnclosingBoxOrParentFrameForNodeInDirection(direct ion, container); 872 container = scrollableEnclosingBoxOrParentFrameForNodeInDirection(direct ion, container);
873 if (container && container->isDocumentNode()) 873 if (container && container->isDocumentNode())
874 toDocument(container)->updateLayoutIgnorePendingStylesheets(); 874 toDocument(container)->updateLayoutIgnorePendingStylesheets();
875 } while (!consumed && container); 875 } while (!consumed && container);
876 876
877 return consumed; 877 return consumed;
878 } 878 }
879 879
880 } // namespace WebCore 880 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/EventSource.h ('k') | Source/core/page/Frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698