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

Side by Side Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 2346663004: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: 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) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies)
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 #include "core/page/TouchAdjustment.h" 85 #include "core/page/TouchAdjustment.h"
86 #include "core/page/scrolling/ScrollState.h" 86 #include "core/page/scrolling/ScrollState.h"
87 #include "core/paint/PaintLayer.h" 87 #include "core/paint/PaintLayer.h"
88 #include "core/style/ComputedStyle.h" 88 #include "core/style/ComputedStyle.h"
89 #include "core/style/CursorData.h" 89 #include "core/style/CursorData.h"
90 #include "core/svg/SVGDocumentExtensions.h" 90 #include "core/svg/SVGDocumentExtensions.h"
91 #include "platform/PlatformGestureEvent.h" 91 #include "platform/PlatformGestureEvent.h"
92 #include "platform/PlatformTouchEvent.h" 92 #include "platform/PlatformTouchEvent.h"
93 #include "platform/PlatformWheelEvent.h" 93 #include "platform/PlatformWheelEvent.h"
94 #include "platform/RuntimeEnabledFeatures.h" 94 #include "platform/RuntimeEnabledFeatures.h"
95 #include "platform/TraceEvent.h"
96 #include "platform/WindowsKeyboardCodes.h" 95 #include "platform/WindowsKeyboardCodes.h"
97 #include "platform/geometry/FloatPoint.h" 96 #include "platform/geometry/FloatPoint.h"
98 #include "platform/graphics/Image.h" 97 #include "platform/graphics/Image.h"
99 #include "platform/heap/Handle.h" 98 #include "platform/heap/Handle.h"
100 #include "platform/scroll/ScrollAnimatorBase.h" 99 #include "platform/scroll/ScrollAnimatorBase.h"
101 #include "platform/scroll/Scrollbar.h" 100 #include "platform/scroll/Scrollbar.h"
101 #include "platform/tracing/TraceEvent.h"
102 #include "public/platform/WebInputEvent.h" 102 #include "public/platform/WebInputEvent.h"
103 #include "wtf/Assertions.h" 103 #include "wtf/Assertions.h"
104 #include "wtf/CurrentTime.h" 104 #include "wtf/CurrentTime.h"
105 #include "wtf/PtrUtil.h" 105 #include "wtf/PtrUtil.h"
106 #include "wtf/StdLibExtras.h" 106 #include "wtf/StdLibExtras.h"
107 #include <memory> 107 #include <memory>
108 108
109 namespace blink { 109 namespace blink {
110 110
111 namespace { 111 namespace {
(...skipping 2448 matching lines...) Expand 10 before | Expand all | Expand 10 after
2560 2560
2561 FrameHost* EventHandler::frameHost() const 2561 FrameHost* EventHandler::frameHost() const
2562 { 2562 {
2563 if (!m_frame->page()) 2563 if (!m_frame->page())
2564 return nullptr; 2564 return nullptr;
2565 2565
2566 return &m_frame->page()->frameHost(); 2566 return &m_frame->page()->frameHost();
2567 } 2567 }
2568 2568
2569 } // namespace blink 2569 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698