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

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

Issue 1884863003: Non passive touch end or touch cancel listeners should not block scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove API from ChromeClient Created 4 years, 8 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 touchEventHandlerCount(Document*); 196 unsigned touchStartOrMoveEventHandlerCount(Document*);
197 unsigned touchEndOrCancelEventHandlerCount(Document*);
197 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); 198 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&);
198 199
199 bool executeCommand(Document*, const String& name, const String& value, Exce ptionState&); 200 bool executeCommand(Document*, const String& name, const String& value, Exce ptionState&);
200 201
201 AtomicString htmlNamespace(); 202 AtomicString htmlNamespace();
202 Vector<AtomicString> htmlTags(); 203 Vector<AtomicString> htmlTags();
203 AtomicString svgNamespace(); 204 AtomicString svgNamespace();
204 Vector<AtomicString> svgTags(); 205 Vector<AtomicString> svgTags();
205 206
206 // This is used to test rect based hit testing like what's done on touch scr eens. 207 // This is used to test rect based hit testing like what's done on touch scr eens.
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 415
415 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
416 Member<InternalRuntimeFlags> m_runtimeFlags; 417 Member<InternalRuntimeFlags> m_runtimeFlags;
417 418
418 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
419 }; 420 };
420 421
421 } // namespace blink 422 } // namespace blink
422 423
423 #endif // Internals_h 424 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698