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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.h

Issue 2209773002: Remove the blocking touch handlers for the input[type=range] and add touch-action instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move the touch event handlers to the container in the shadow dom Created 4 years, 4 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 186
187 int lastSpellCheckRequestSequence(Document*, ExceptionState&); 187 int lastSpellCheckRequestSequence(Document*, ExceptionState&);
188 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); 188 int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
189 189
190 Vector<AtomicString> userPreferredLanguages() const; 190 Vector<AtomicString> userPreferredLanguages() const;
191 void setUserPreferredLanguages(const Vector<String>&); 191 void setUserPreferredLanguages(const Vector<String>&);
192 192
193 unsigned activeDOMObjectCount(Document*); 193 unsigned activeDOMObjectCount(Document*);
194 unsigned wheelEventHandlerCount(Document*); 194 unsigned wheelEventHandlerCount(Document*);
195 unsigned scrollEventHandlerCount(Document*); 195 unsigned scrollEventHandlerCount(Document*);
196 unsigned blockingTouchStartOrMoveEventHandlerCount(Document*);
197 unsigned passiveTouchStartOrMoveEventHandlerCount(Document*);
196 unsigned touchStartOrMoveEventHandlerCount(Document*); 198 unsigned touchStartOrMoveEventHandlerCount(Document*);
197 unsigned touchEndOrCancelEventHandlerCount(Document*); 199 unsigned touchEndOrCancelEventHandlerCount(Document*);
198 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); 200 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&);
199 201
200 bool executeCommand(Document*, const String& name, const String& value, Exce ptionState&); 202 bool executeCommand(Document*, const String& name, const String& value, Exce ptionState&);
201 203
202 AtomicString htmlNamespace(); 204 AtomicString htmlNamespace();
203 Vector<AtomicString> htmlTags(); 205 Vector<AtomicString> htmlTags();
204 AtomicString svgNamespace(); 206 AtomicString svgNamespace();
205 Vector<AtomicString> svgTags(); 207 Vector<AtomicString> svgTags();
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 411
410 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
411 Member<InternalRuntimeFlags> m_runtimeFlags; 413 Member<InternalRuntimeFlags> m_runtimeFlags;
412 414
413 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 415 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
414 }; 416 };
415 417
416 } // namespace blink 418 } // namespace blink
417 419
418 #endif // Internals_h 420 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698