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

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

Issue 2316533004: Don't include headers from the layout API from other headers needlessly. (Closed)
Patch Set: The runway sure is slippery today. Created 4 years, 3 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) 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #include "core/frame/Settings.h" 60 #include "core/frame/Settings.h"
61 #include "core/html/HTMLBodyElement.h" 61 #include "core/html/HTMLBodyElement.h"
62 #include "core/html/HTMLFormElement.h" 62 #include "core/html/HTMLFormElement.h"
63 #include "core/html/HTMLFrameElementBase.h" 63 #include "core/html/HTMLFrameElementBase.h"
64 #include "core/html/HTMLInputElement.h" 64 #include "core/html/HTMLInputElement.h"
65 #include "core/html/HTMLSelectElement.h" 65 #include "core/html/HTMLSelectElement.h"
66 #include "core/input/EventHandler.h" 66 #include "core/input/EventHandler.h"
67 #include "core/layout/HitTestRequest.h" 67 #include "core/layout/HitTestRequest.h"
68 #include "core/layout/HitTestResult.h" 68 #include "core/layout/HitTestResult.h"
69 #include "core/layout/LayoutPart.h" 69 #include "core/layout/LayoutPart.h"
70 #include "core/layout/api/LayoutViewItem.h"
70 #include "core/loader/DocumentLoader.h" 71 #include "core/loader/DocumentLoader.h"
71 #include "core/page/EditorClient.h" 72 #include "core/page/EditorClient.h"
72 #include "core/page/FocusController.h" 73 #include "core/page/FocusController.h"
73 #include "core/page/FrameTree.h" 74 #include "core/page/FrameTree.h"
74 #include "core/page/Page.h" 75 #include "core/page/Page.h"
75 #include "core/page/SpatialNavigation.h" 76 #include "core/page/SpatialNavigation.h"
76 #include "core/paint/PaintLayer.h" 77 #include "core/paint/PaintLayer.h"
77 #include "platform/SecureTextInput.h" 78 #include "platform/SecureTextInput.h"
78 #include "platform/geometry/FloatQuad.h" 79 #include "platform/geometry/FloatQuad.h"
79 #include "platform/graphics/GraphicsContext.h" 80 #include "platform/graphics/GraphicsContext.h"
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 1379
1379 void showTree(const blink::FrameSelection* sel) 1380 void showTree(const blink::FrameSelection* sel)
1380 { 1381 {
1381 if (sel) 1382 if (sel)
1382 sel->showTreeForThis(); 1383 sel->showTreeForThis();
1383 else 1384 else
1384 LOG(INFO) << "Cannot showTree for <null> FrameSelection."; 1385 LOG(INFO) << "Cannot showTree for <null> FrameSelection.";
1385 } 1386 }
1386 1387
1387 #endif 1388 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/CaretBase.cpp ('k') | third_party/WebKit/Source/core/frame/Frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698