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

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

Issue 1148813007: Move EventHandler from core/page/ to core/input (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unnecessary file Created 5 years, 6 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
« no previous file with comments | « Source/core/editing/EditorCommand.cpp ('k') | Source/core/editing/InputMethodController.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/events/Event.h" 50 #include "core/events/Event.h"
51 #include "core/frame/FrameView.h" 51 #include "core/frame/FrameView.h"
52 #include "core/frame/LocalDOMWindow.h" 52 #include "core/frame/LocalDOMWindow.h"
53 #include "core/frame/LocalFrame.h" 53 #include "core/frame/LocalFrame.h"
54 #include "core/frame/Settings.h" 54 #include "core/frame/Settings.h"
55 #include "core/html/HTMLBodyElement.h" 55 #include "core/html/HTMLBodyElement.h"
56 #include "core/html/HTMLFormElement.h" 56 #include "core/html/HTMLFormElement.h"
57 #include "core/html/HTMLFrameElementBase.h" 57 #include "core/html/HTMLFrameElementBase.h"
58 #include "core/html/HTMLInputElement.h" 58 #include "core/html/HTMLInputElement.h"
59 #include "core/html/HTMLSelectElement.h" 59 #include "core/html/HTMLSelectElement.h"
60 #include "core/input/EventHandler.h"
60 #include "core/layout/HitTestRequest.h" 61 #include "core/layout/HitTestRequest.h"
61 #include "core/layout/HitTestResult.h" 62 #include "core/layout/HitTestResult.h"
62 #include "core/layout/LayoutPart.h" 63 #include "core/layout/LayoutPart.h"
63 #include "core/layout/LayoutText.h" 64 #include "core/layout/LayoutText.h"
64 #include "core/layout/LayoutTheme.h" 65 #include "core/layout/LayoutTheme.h"
65 #include "core/layout/LayoutView.h" 66 #include "core/layout/LayoutView.h"
66 #include "core/layout/line/InlineTextBox.h" 67 #include "core/layout/line/InlineTextBox.h"
67 #include "core/page/EditorClient.h" 68 #include "core/page/EditorClient.h"
68 #include "core/page/EventHandler.h"
69 #include "core/page/FocusController.h" 69 #include "core/page/FocusController.h"
70 #include "core/page/FrameTree.h" 70 #include "core/page/FrameTree.h"
71 #include "core/page/Page.h" 71 #include "core/page/Page.h"
72 #include "core/page/SpatialNavigation.h" 72 #include "core/page/SpatialNavigation.h"
73 #include "core/paint/DeprecatedPaintLayer.h" 73 #include "core/paint/DeprecatedPaintLayer.h"
74 #include "platform/SecureTextInput.h" 74 #include "platform/SecureTextInput.h"
75 #include "platform/geometry/FloatQuad.h" 75 #include "platform/geometry/FloatQuad.h"
76 #include "platform/graphics/GraphicsContext.h" 76 #include "platform/graphics/GraphicsContext.h"
77 #include "platform/text/UnicodeUtilities.h" 77 #include "platform/text/UnicodeUtilities.h"
78 #include "wtf/text/CString.h" 78 #include "wtf/text/CString.h"
(...skipping 1894 matching lines...) Expand 10 before | Expand all | Expand 10 after
1973 1973
1974 void showTree(const blink::FrameSelection* sel) 1974 void showTree(const blink::FrameSelection* sel)
1975 { 1975 {
1976 if (sel) 1976 if (sel)
1977 sel->showTreeForThis(); 1977 sel->showTreeForThis();
1978 else 1978 else
1979 fprintf(stderr, "Cannot showTree for (nil) FrameSelection.\n"); 1979 fprintf(stderr, "Cannot showTree for (nil) FrameSelection.\n");
1980 } 1980 }
1981 1981
1982 #endif 1982 #endif
OLDNEW
« no previous file with comments | « Source/core/editing/EditorCommand.cpp ('k') | Source/core/editing/InputMethodController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698