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

Side by Side Diff: third_party/WebKit/Source/core/exported/WebViewBase.h

Issue 2905283003: Remove a bunch of dead code around WindowFeatures (Closed)
Patch Set: Use WebWindowFeatures everywhere Created 3 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
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.#ifndef WebViewBase_h 3 // found in the LICENSE file.#ifndef WebViewBase_h
4 4
5 #ifndef WebViewBase_h 5 #ifndef WebViewBase_h
6 #define WebViewBase_h 6 #define WebViewBase_h
7 7
8 #include "core/page/EventWithHitTestResults.h" 8 #include "core/page/EventWithHitTestResults.h"
9 #include "platform/transforms/TransformationMatrix.h" 9 #include "platform/transforms/TransformationMatrix.h"
10 #include "platform/wtf/RefCounted.h" 10 #include "platform/wtf/RefCounted.h"
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 virtual TransformationMatrix GetDeviceEmulationTransformForTesting() 214 virtual TransformationMatrix GetDeviceEmulationTransformForTesting()
215 const = 0; 215 const = 0;
216 virtual bool MatchesHeuristicsForGpuRasterizationForTesting() const = 0; 216 virtual bool MatchesHeuristicsForGpuRasterizationForTesting() const = 0;
217 virtual Node* BestTapNode( 217 virtual Node* BestTapNode(
218 const GestureEventWithHitTestResults& targeted_tap_event) = 0; 218 const GestureEventWithHitTestResults& targeted_tap_event) = 0;
219 virtual void EnableTapHighlightAtPoint( 219 virtual void EnableTapHighlightAtPoint(
220 const GestureEventWithHitTestResults& targeted_tap_event) = 0; 220 const GestureEventWithHitTestResults& targeted_tap_event) = 0;
221 virtual LinkHighlightImpl* GetLinkHighlight(int) = 0; 221 virtual LinkHighlightImpl* GetLinkHighlight(int) = 0;
222 virtual unsigned NumLinkHighlights() = 0; 222 virtual unsigned NumLinkHighlights() = 0;
223 virtual void EnableTapHighlights(HeapVector<Member<Node>>&) = 0; 223 virtual void EnableTapHighlights(HeapVector<Member<Node>>&) = 0;
224 virtual void SetCurrentInputEventForTest(const WebInputEvent*) = 0;
225 }; 224 };
226 } 225 }
227 226
228 #endif 227 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698