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

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

Issue 2916893003: Bookkeep the pointer event listeners added to page (Closed)
Patch Set: fix rebase error 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 /* 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); 259 int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
260 String idleTimeSpellCheckerState(Document*, ExceptionState&); 260 String idleTimeSpellCheckerState(Document*, ExceptionState&);
261 void runIdleTimeSpellChecker(Document*, ExceptionState&); 261 void runIdleTimeSpellChecker(Document*, ExceptionState&);
262 262
263 Vector<AtomicString> userPreferredLanguages() const; 263 Vector<AtomicString> userPreferredLanguages() const;
264 void setUserPreferredLanguages(const Vector<String>&); 264 void setUserPreferredLanguages(const Vector<String>&);
265 265
266 unsigned mediaKeysCount(); 266 unsigned mediaKeysCount();
267 unsigned mediaKeySessionCount(); 267 unsigned mediaKeySessionCount();
268 unsigned suspendableObjectCount(Document*); 268 unsigned suspendableObjectCount(Document*);
269 unsigned wheelEventHandlerCount(Document*); 269 unsigned wheelEventHandlerCount(Document*) const;
270 unsigned scrollEventHandlerCount(Document*); 270 unsigned scrollEventHandlerCount(Document*) const;
271 unsigned touchStartOrMoveEventHandlerCount(Document*); 271 unsigned touchStartOrMoveEventHandlerCount(Document*) const;
272 unsigned touchEndOrCancelEventHandlerCount(Document*); 272 unsigned touchEndOrCancelEventHandlerCount(Document*) const;
273 unsigned pointerEventHandlerCount(Document*) const;
274
273 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); 275 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&);
274 276
275 bool executeCommand(Document*, 277 bool executeCommand(Document*,
276 const String& name, 278 const String& name,
277 const String& value, 279 const String& value,
278 ExceptionState&); 280 ExceptionState&);
279 281
280 AtomicString htmlNamespace(); 282 AtomicString htmlNamespace();
281 Vector<AtomicString> htmlTags(); 283 Vector<AtomicString> htmlTags();
282 AtomicString svgNamespace(); 284 AtomicString svgNamespace();
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 const String& marker_type, 575 const String& marker_type,
574 unsigned index, 576 unsigned index,
575 ExceptionState&); 577 ExceptionState&);
576 Member<InternalRuntimeFlags> runtime_flags_; 578 Member<InternalRuntimeFlags> runtime_flags_;
577 Member<Document> document_; 579 Member<Document> document_;
578 }; 580 };
579 581
580 } // namespace blink 582 } // namespace blink
581 583
582 #endif // Internals_h 584 #endif // Internals_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/PointerEventManager.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698