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

Side by Side Diff: Source/core/layout/LayoutFrameSet.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/LayoutBox.cpp ('k') | Source/core/layout/LayoutListBox.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) 2000 Simon Hausmann <hausmann@kde.org> 3 * (C) 2000 Simon Hausmann <hausmann@kde.org>
4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de)
5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 11 matching lines...) Expand all
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "core/layout/LayoutFrameSet.h" 25 #include "core/layout/LayoutFrameSet.h"
26 26
27 #include "core/dom/Document.h" 27 #include "core/dom/Document.h"
28 #include "core/events/MouseEvent.h" 28 #include "core/events/MouseEvent.h"
29 #include "core/frame/LocalFrame.h" 29 #include "core/frame/LocalFrame.h"
30 #include "core/html/HTMLDimension.h" 30 #include "core/html/HTMLDimension.h"
31 #include "core/html/HTMLFrameSetElement.h" 31 #include "core/html/HTMLFrameSetElement.h"
32 #include "core/input/EventHandler.h"
32 #include "core/layout/LayoutFrame.h" 33 #include "core/layout/LayoutFrame.h"
33 #include "core/layout/LayoutView.h" 34 #include "core/layout/LayoutView.h"
34 #include "core/page/EventHandler.h"
35 #include "core/paint/FrameSetPainter.h" 35 #include "core/paint/FrameSetPainter.h"
36 #include "platform/Cursor.h" 36 #include "platform/Cursor.h"
37 #include "platform/graphics/GraphicsContext.h" 37 #include "platform/graphics/GraphicsContext.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 LayoutFrameSet::LayoutFrameSet(HTMLFrameSetElement* frameSet) 41 LayoutFrameSet::LayoutFrameSet(HTMLFrameSetElement* frameSet)
42 : LayoutBox(frameSet) 42 : LayoutBox(frameSet)
43 , m_isResizing(false) 43 , m_isResizing(false)
44 , m_isChildResizing(false) 44 , m_isChildResizing(false)
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 return SetCursor; 567 return SetCursor;
568 } 568 }
569 if (canResizeColumn(roundedPoint)) { 569 if (canResizeColumn(roundedPoint)) {
570 cursor = columnResizeCursor(); 570 cursor = columnResizeCursor();
571 return SetCursor; 571 return SetCursor;
572 } 572 }
573 return LayoutBox::getCursor(point, cursor); 573 return LayoutBox::getCursor(point, cursor);
574 } 574 }
575 575
576 } // namespace blink 576 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutBox.cpp ('k') | Source/core/layout/LayoutListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698