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

Side by Side Diff: Source/core/layout/LayoutObject.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/layout/LayoutListBox.cpp ('k') | Source/core/loader/FrameLoader.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "core/frame/EventHandlerRegistry.h" 42 #include "core/frame/EventHandlerRegistry.h"
43 #include "core/frame/FrameView.h" 43 #include "core/frame/FrameView.h"
44 #include "core/frame/LocalFrame.h" 44 #include "core/frame/LocalFrame.h"
45 #include "core/frame/Settings.h" 45 #include "core/frame/Settings.h"
46 #include "core/frame/UseCounter.h" 46 #include "core/frame/UseCounter.h"
47 #include "core/html/HTMLAnchorElement.h" 47 #include "core/html/HTMLAnchorElement.h"
48 #include "core/html/HTMLElement.h" 48 #include "core/html/HTMLElement.h"
49 #include "core/html/HTMLHtmlElement.h" 49 #include "core/html/HTMLHtmlElement.h"
50 #include "core/html/HTMLTableCellElement.h" 50 #include "core/html/HTMLTableCellElement.h"
51 #include "core/html/HTMLTableElement.h" 51 #include "core/html/HTMLTableElement.h"
52 #include "core/input/EventHandler.h"
52 #include "core/layout/HitTestResult.h" 53 #include "core/layout/HitTestResult.h"
53 #include "core/layout/LayoutCounter.h" 54 #include "core/layout/LayoutCounter.h"
54 #include "core/layout/LayoutDeprecatedFlexibleBox.h" 55 #include "core/layout/LayoutDeprecatedFlexibleBox.h"
55 #include "core/layout/LayoutFlexibleBox.h" 56 #include "core/layout/LayoutFlexibleBox.h"
56 #include "core/layout/LayoutFlowThread.h" 57 #include "core/layout/LayoutFlowThread.h"
57 #include "core/layout/LayoutGeometryMap.h" 58 #include "core/layout/LayoutGeometryMap.h"
58 #include "core/layout/LayoutGrid.h" 59 #include "core/layout/LayoutGrid.h"
59 #include "core/layout/LayoutImage.h" 60 #include "core/layout/LayoutImage.h"
60 #include "core/layout/LayoutImageResourceStyleImage.h" 61 #include "core/layout/LayoutImageResourceStyleImage.h"
61 #include "core/layout/LayoutInline.h" 62 #include "core/layout/LayoutInline.h"
62 #include "core/layout/LayoutListItem.h" 63 #include "core/layout/LayoutListItem.h"
63 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" 64 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h"
64 #include "core/layout/LayoutObjectInlines.h" 65 #include "core/layout/LayoutObjectInlines.h"
65 #include "core/layout/LayoutPart.h" 66 #include "core/layout/LayoutPart.h"
66 #include "core/layout/LayoutScrollbarPart.h" 67 #include "core/layout/LayoutScrollbarPart.h"
67 #include "core/layout/LayoutTableCaption.h" 68 #include "core/layout/LayoutTableCaption.h"
68 #include "core/layout/LayoutTableCell.h" 69 #include "core/layout/LayoutTableCell.h"
69 #include "core/layout/LayoutTableCol.h" 70 #include "core/layout/LayoutTableCol.h"
70 #include "core/layout/LayoutTableRow.h" 71 #include "core/layout/LayoutTableRow.h"
71 #include "core/layout/LayoutTheme.h" 72 #include "core/layout/LayoutTheme.h"
72 #include "core/layout/LayoutView.h" 73 #include "core/layout/LayoutView.h"
73 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" 74 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
74 #include "core/style/ContentData.h" 75 #include "core/style/ContentData.h"
75 #include "core/style/ShadowList.h" 76 #include "core/style/ShadowList.h"
76 #include "core/page/AutoscrollController.h" 77 #include "core/page/AutoscrollController.h"
77 #include "core/page/EventHandler.h"
78 #include "core/page/Page.h" 78 #include "core/page/Page.h"
79 #include "core/paint/DeprecatedPaintLayer.h" 79 #include "core/paint/DeprecatedPaintLayer.h"
80 #include "core/paint/ObjectPainter.h" 80 #include "core/paint/ObjectPainter.h"
81 #include "platform/JSONValues.h" 81 #include "platform/JSONValues.h"
82 #include "platform/RuntimeEnabledFeatures.h" 82 #include "platform/RuntimeEnabledFeatures.h"
83 #include "platform/TraceEvent.h" 83 #include "platform/TraceEvent.h"
84 #include "platform/TracedValue.h" 84 #include "platform/TracedValue.h"
85 #include "platform/geometry/TransformState.h" 85 #include "platform/geometry/TransformState.h"
86 #include "platform/graphics/GraphicsContext.h" 86 #include "platform/graphics/GraphicsContext.h"
87 #include "platform/graphics/paint/DisplayItemList.h" 87 #include "platform/graphics/paint/DisplayItemList.h"
(...skipping 3203 matching lines...) Expand 10 before | Expand all | Expand 10 after
3291 const blink::LayoutObject* root = object1; 3291 const blink::LayoutObject* root = object1;
3292 while (root->parent()) 3292 while (root->parent())
3293 root = root->parent(); 3293 root = root->parent();
3294 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); 3294 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0);
3295 } else { 3295 } else {
3296 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); 3296 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n");
3297 } 3297 }
3298 } 3298 }
3299 3299
3300 #endif 3300 #endif
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutListBox.cpp ('k') | Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698