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

Side by Side Diff: Source/core/frame/FrameView.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/frame/Frame.cpp ('k') | Source/core/frame/LocalDOMWindow.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) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 28 matching lines...) Expand all
39 #include "core/events/OverflowEvent.h" 39 #include "core/events/OverflowEvent.h"
40 #include "core/fetch/ResourceFetcher.h" 40 #include "core/fetch/ResourceFetcher.h"
41 #include "core/fetch/ResourceLoadPriorityOptimizer.h" 41 #include "core/fetch/ResourceLoadPriorityOptimizer.h"
42 #include "core/frame/FrameHost.h" 42 #include "core/frame/FrameHost.h"
43 #include "core/frame/LocalFrame.h" 43 #include "core/frame/LocalFrame.h"
44 #include "core/frame/Settings.h" 44 #include "core/frame/Settings.h"
45 #include "core/html/HTMLFrameElement.h" 45 #include "core/html/HTMLFrameElement.h"
46 #include "core/html/HTMLPlugInElement.h" 46 #include "core/html/HTMLPlugInElement.h"
47 #include "core/html/HTMLTextFormControlElement.h" 47 #include "core/html/HTMLTextFormControlElement.h"
48 #include "core/html/parser/TextResourceDecoder.h" 48 #include "core/html/parser/TextResourceDecoder.h"
49 #include "core/input/EventHandler.h"
49 #include "core/inspector/InspectorInstrumentation.h" 50 #include "core/inspector/InspectorInstrumentation.h"
50 #include "core/inspector/InspectorTraceEvents.h" 51 #include "core/inspector/InspectorTraceEvents.h"
51 #include "core/layout/LayoutAnalyzer.h" 52 #include "core/layout/LayoutAnalyzer.h"
52 #include "core/layout/LayoutCounter.h" 53 #include "core/layout/LayoutCounter.h"
53 #include "core/layout/LayoutEmbeddedObject.h" 54 #include "core/layout/LayoutEmbeddedObject.h"
54 #include "core/layout/LayoutInline.h" 55 #include "core/layout/LayoutInline.h"
55 #include "core/layout/LayoutListBox.h" 56 #include "core/layout/LayoutListBox.h"
56 #include "core/layout/LayoutPart.h" 57 #include "core/layout/LayoutPart.h"
57 #include "core/layout/LayoutScrollbar.h" 58 #include "core/layout/LayoutScrollbar.h"
58 #include "core/layout/LayoutScrollbarPart.h" 59 #include "core/layout/LayoutScrollbarPart.h"
59 #include "core/layout/LayoutTableCell.h" 60 #include "core/layout/LayoutTableCell.h"
60 #include "core/layout/LayoutTheme.h" 61 #include "core/layout/LayoutTheme.h"
61 #include "core/layout/LayoutView.h" 62 #include "core/layout/LayoutView.h"
62 #include "core/layout/ScrollAlignment.h" 63 #include "core/layout/ScrollAlignment.h"
63 #include "core/layout/TextAutosizer.h" 64 #include "core/layout/TextAutosizer.h"
64 #include "core/layout/TracedLayoutObject.h" 65 #include "core/layout/TracedLayoutObject.h"
65 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" 66 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h"
66 #include "core/layout/compositing/CompositedSelection.h" 67 #include "core/layout/compositing/CompositedSelection.h"
67 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" 68 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
68 #include "core/layout/svg/LayoutSVGRoot.h" 69 #include "core/layout/svg/LayoutSVGRoot.h"
69 #include "core/loader/FrameLoader.h" 70 #include "core/loader/FrameLoader.h"
70 #include "core/loader/FrameLoaderClient.h" 71 #include "core/loader/FrameLoaderClient.h"
71 #include "core/page/AutoscrollController.h" 72 #include "core/page/AutoscrollController.h"
72 #include "core/page/ChromeClient.h" 73 #include "core/page/ChromeClient.h"
73 #include "core/page/EventHandler.h"
74 #include "core/page/FocusController.h" 74 #include "core/page/FocusController.h"
75 #include "core/page/FrameTree.h" 75 #include "core/page/FrameTree.h"
76 #include "core/page/Page.h" 76 #include "core/page/Page.h"
77 #include "core/page/scrolling/ScrollingCoordinator.h" 77 #include "core/page/scrolling/ScrollingCoordinator.h"
78 #include "core/paint/DeprecatedPaintLayer.h" 78 #include "core/paint/DeprecatedPaintLayer.h"
79 #include "core/paint/FramePainter.h" 79 #include "core/paint/FramePainter.h"
80 #include "core/style/ComputedStyle.h" 80 #include "core/style/ComputedStyle.h"
81 #include "core/svg/SVGDocumentExtensions.h" 81 #include "core/svg/SVGDocumentExtensions.h"
82 #include "core/svg/SVGSVGElement.h" 82 #include "core/svg/SVGSVGElement.h"
83 #include "platform/HostWindow.h" 83 #include "platform/HostWindow.h"
(...skipping 3936 matching lines...) Expand 10 before | Expand all | Expand 10 after
4020 4020
4021 if (!graphicsLayer) 4021 if (!graphicsLayer)
4022 return; 4022 return;
4023 4023
4024 DeprecatedPaintLayer::mapRectToPaintInvalidationBacking(localFrame->contentL ayoutObject(), paintInvalidationContainer, viewRect); 4024 DeprecatedPaintLayer::mapRectToPaintInvalidationBacking(localFrame->contentL ayoutObject(), paintInvalidationContainer, viewRect);
4025 4025
4026 graphicsLayerTimingRequests.add(graphicsLayer, Vector<std::pair<int64_t, Web Rect>>()).storedValue->value.append(std::make_pair(m_frame->frameID(), enclosing IntRect(viewRect))); 4026 graphicsLayerTimingRequests.add(graphicsLayer, Vector<std::pair<int64_t, Web Rect>>()).storedValue->value.append(std::make_pair(m_frame->frameID(), enclosing IntRect(viewRect)));
4027 } 4027 }
4028 4028
4029 } // namespace blink 4029 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/frame/Frame.cpp ('k') | Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698