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

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

Issue 2727673005: Better spellcheck_test (Closed)
Patch Set: Mon Mar 6 11:18:30 PST 2017 Created 3 years, 9 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 ExceptionState&); 245 ExceptionState&);
246 ClientRect* bestZoomableAreaForTouchPoint(long x, 246 ClientRect* bestZoomableAreaForTouchPoint(long x,
247 long y, 247 long y,
248 long width, 248 long width,
249 long height, 249 long height,
250 Document*, 250 Document*,
251 ExceptionState&); 251 ExceptionState&);
252 252
253 int lastSpellCheckRequestSequence(Document*, ExceptionState&); 253 int lastSpellCheckRequestSequence(Document*, ExceptionState&);
254 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); 254 int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
255 String idleTimeSpellCheckerState(Document*, ExceptionState&);
256 void runIdleTimeSpellChecker(Document*, ExceptionState&);
255 257
256 Vector<AtomicString> userPreferredLanguages() const; 258 Vector<AtomicString> userPreferredLanguages() const;
257 void setUserPreferredLanguages(const Vector<String>&); 259 void setUserPreferredLanguages(const Vector<String>&);
258 260
259 unsigned mediaKeysCount(); 261 unsigned mediaKeysCount();
260 unsigned mediaKeySessionCount(); 262 unsigned mediaKeySessionCount();
261 unsigned suspendableObjectCount(Document*); 263 unsigned suspendableObjectCount(Document*);
262 unsigned wheelEventHandlerCount(Document*); 264 unsigned wheelEventHandlerCount(Document*);
263 unsigned scrollEventHandlerCount(Document*); 265 unsigned scrollEventHandlerCount(Document*);
264 unsigned touchStartOrMoveEventHandlerCount(Document*); 266 unsigned touchStartOrMoveEventHandlerCount(Document*);
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 const String& markerType, 555 const String& markerType,
554 unsigned index, 556 unsigned index,
555 ExceptionState&); 557 ExceptionState&);
556 Member<InternalRuntimeFlags> m_runtimeFlags; 558 Member<InternalRuntimeFlags> m_runtimeFlags;
557 Member<Document> m_document; 559 Member<Document> m_document;
558 }; 560 };
559 561
560 } // namespace blink 562 } // namespace blink
561 563
562 #endif // Internals_h 564 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698