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

Side by Side Diff: Source/core/editing/FrameSelection.cpp

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/editing/Caret.cpp ('k') | Source/core/editing/RenderedPosition.cpp » ('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) 2004, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/frame/LocalDOMWindow.h" 50 #include "core/frame/LocalDOMWindow.h"
51 #include "core/frame/LocalFrame.h" 51 #include "core/frame/LocalFrame.h"
52 #include "core/frame/Settings.h" 52 #include "core/frame/Settings.h"
53 #include "core/html/HTMLBodyElement.h" 53 #include "core/html/HTMLBodyElement.h"
54 #include "core/html/HTMLFormElement.h" 54 #include "core/html/HTMLFormElement.h"
55 #include "core/html/HTMLFrameElementBase.h" 55 #include "core/html/HTMLFrameElementBase.h"
56 #include "core/html/HTMLInputElement.h" 56 #include "core/html/HTMLInputElement.h"
57 #include "core/html/HTMLSelectElement.h" 57 #include "core/html/HTMLSelectElement.h"
58 #include "core/layout/HitTestRequest.h" 58 #include "core/layout/HitTestRequest.h"
59 #include "core/layout/HitTestResult.h" 59 #include "core/layout/HitTestResult.h"
60 #include "core/layout/Layer.h"
60 #include "core/layout/LayoutTheme.h" 61 #include "core/layout/LayoutTheme.h"
61 #include "core/page/EditorClient.h" 62 #include "core/page/EditorClient.h"
62 #include "core/page/EventHandler.h" 63 #include "core/page/EventHandler.h"
63 #include "core/page/FocusController.h" 64 #include "core/page/FocusController.h"
64 #include "core/page/FrameTree.h" 65 #include "core/page/FrameTree.h"
65 #include "core/page/Page.h" 66 #include "core/page/Page.h"
66 #include "core/page/SpatialNavigation.h" 67 #include "core/page/SpatialNavigation.h"
67 #include "core/rendering/InlineTextBox.h" 68 #include "core/rendering/InlineTextBox.h"
68 #include "core/rendering/RenderLayer.h"
69 #include "core/rendering/RenderPart.h" 69 #include "core/rendering/RenderPart.h"
70 #include "core/rendering/RenderText.h" 70 #include "core/rendering/RenderText.h"
71 #include "core/rendering/RenderView.h" 71 #include "core/rendering/RenderView.h"
72 #include "platform/SecureTextInput.h" 72 #include "platform/SecureTextInput.h"
73 #include "platform/geometry/FloatQuad.h" 73 #include "platform/geometry/FloatQuad.h"
74 #include "platform/graphics/GraphicsContext.h" 74 #include "platform/graphics/GraphicsContext.h"
75 #include "platform/text/UnicodeUtilities.h" 75 #include "platform/text/UnicodeUtilities.h"
76 #include "wtf/text/CString.h" 76 #include "wtf/text/CString.h"
77 #include <stdio.h> 77 #include <stdio.h>
78 78
(...skipping 1842 matching lines...) Expand 10 before | Expand all | Expand 10 after
1921 sel.showTreeForThis(); 1921 sel.showTreeForThis();
1922 } 1922 }
1923 1923
1924 void showTree(const blink::FrameSelection* sel) 1924 void showTree(const blink::FrameSelection* sel)
1925 { 1925 {
1926 if (sel) 1926 if (sel)
1927 sel->showTreeForThis(); 1927 sel->showTreeForThis();
1928 } 1928 }
1929 1929
1930 #endif 1930 #endif
OLDNEW
« no previous file with comments | « Source/core/editing/Caret.cpp ('k') | Source/core/editing/RenderedPosition.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698