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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp

Issue 2646163002: Remove PlatformTouchEvent/Point and use WebTouchEvent/Point instead (Closed)
Patch Set: Address comments and failing test Created 3 years, 11 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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * Copyright (C) 2009 Joseph Pecoraro 4 * Copyright (C) 2009 Joseph Pecoraro
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 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 #include "core/layout/HitTestResult.h" 69 #include "core/layout/HitTestResult.h"
70 #include "core/layout/LayoutInline.h" 70 #include "core/layout/LayoutInline.h"
71 #include "core/layout/api/LayoutViewItem.h" 71 #include "core/layout/api/LayoutViewItem.h"
72 #include "core/layout/line/InlineTextBox.h" 72 #include "core/layout/line/InlineTextBox.h"
73 #include "core/loader/DocumentLoader.h" 73 #include "core/loader/DocumentLoader.h"
74 #include "core/page/FrameTree.h" 74 #include "core/page/FrameTree.h"
75 #include "core/page/Page.h" 75 #include "core/page/Page.h"
76 #include "core/xml/DocumentXPathEvaluator.h" 76 #include "core/xml/DocumentXPathEvaluator.h"
77 #include "core/xml/XPathResult.h" 77 #include "core/xml/XPathResult.h"
78 #include "platform/PlatformMouseEvent.h" 78 #include "platform/PlatformMouseEvent.h"
79 #include "platform/PlatformTouchEvent.h"
80 #include "wtf/ListHashSet.h" 79 #include "wtf/ListHashSet.h"
81 #include "wtf/PtrUtil.h" 80 #include "wtf/PtrUtil.h"
82 #include "wtf/text/CString.h" 81 #include "wtf/text/CString.h"
83 #include "wtf/text/WTFString.h" 82 #include "wtf/text/WTFString.h"
84 #include <memory> 83 #include <memory>
85 84
86 namespace blink { 85 namespace blink {
87 86
88 using namespace HTMLNames; 87 using namespace HTMLNames;
89 88
(...skipping 2188 matching lines...) Expand 10 before | Expand all | Expand 10 after
2278 visitor->trace(m_idToNodesMap); 2277 visitor->trace(m_idToNodesMap);
2279 visitor->trace(m_document); 2278 visitor->trace(m_document);
2280 visitor->trace(m_revalidateTask); 2279 visitor->trace(m_revalidateTask);
2281 visitor->trace(m_searchResults); 2280 visitor->trace(m_searchResults);
2282 visitor->trace(m_history); 2281 visitor->trace(m_history);
2283 visitor->trace(m_domEditor); 2282 visitor->trace(m_domEditor);
2284 InspectorBaseAgent::trace(visitor); 2283 InspectorBaseAgent::trace(visitor);
2285 } 2284 }
2286 2285
2287 } // namespace blink 2286 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698