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

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

Issue 2539283002: Remove PlatformGestureEvent in favour of using WebGestureEvent (Closed)
Patch Set: Add missing copyright on new file Created 4 years 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 #include "core/inspector/V8InspectorString.h" 68 #include "core/inspector/V8InspectorString.h"
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/PlatformGestureEvent.h"
79 #include "platform/PlatformMouseEvent.h" 78 #include "platform/PlatformMouseEvent.h"
80 #include "platform/PlatformTouchEvent.h" 79 #include "platform/PlatformTouchEvent.h"
81 #include "wtf/ListHashSet.h" 80 #include "wtf/ListHashSet.h"
82 #include "wtf/PtrUtil.h" 81 #include "wtf/PtrUtil.h"
83 #include "wtf/text/CString.h" 82 #include "wtf/text/CString.h"
84 #include "wtf/text/WTFString.h" 83 #include "wtf/text/WTFString.h"
85 #include <memory> 84 #include <memory>
86 85
87 namespace blink { 86 namespace blink {
88 87
(...skipping 2190 matching lines...) Expand 10 before | Expand all | Expand 10 after
2279 visitor->trace(m_idToNodesMap); 2278 visitor->trace(m_idToNodesMap);
2280 visitor->trace(m_document); 2279 visitor->trace(m_document);
2281 visitor->trace(m_revalidateTask); 2280 visitor->trace(m_revalidateTask);
2282 visitor->trace(m_searchResults); 2281 visitor->trace(m_searchResults);
2283 visitor->trace(m_history); 2282 visitor->trace(m_history);
2284 visitor->trace(m_domEditor); 2283 visitor->trace(m_domEditor);
2285 InspectorBaseAgent::trace(visitor); 2284 InspectorBaseAgent::trace(visitor);
2286 } 2285 }
2287 2286
2288 } // namespace blink 2287 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/ScrollManager.cpp ('k') | third_party/WebKit/Source/core/page/EventWithHitTestResults.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698