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

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

Issue 2438033003: [NOT FOR COMMIT] Layout test for WebFonts cache-aware timeout adaption (Closed)
Patch Set: rebase Created 4 years, 1 month 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 25 matching lines...) Expand all
36 #include "core/css/CSSComputedStyleDeclaration.h" 36 #include "core/css/CSSComputedStyleDeclaration.h"
37 #include "core/dom/ContextLifecycleObserver.h" 37 #include "core/dom/ContextLifecycleObserver.h"
38 #include "core/page/scrolling/ScrollingCoordinator.h" 38 #include "core/page/scrolling/ScrollingCoordinator.h"
39 #include "platform/heap/Handle.h" 39 #include "platform/heap/Handle.h"
40 #include "wtf/Forward.h" 40 #include "wtf/Forward.h"
41 #include "wtf/text/WTFString.h" 41 #include "wtf/text/WTFString.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class Animation; 45 class Animation;
46 class CacheAwareFontDisplayTest;
46 class CallbackFunctionTest; 47 class CallbackFunctionTest;
47 class CanvasRenderingContext; 48 class CanvasRenderingContext;
48 class ClientRect; 49 class ClientRect;
49 class ClientRectList; 50 class ClientRectList;
50 class DOMArrayBuffer; 51 class DOMArrayBuffer;
51 class DOMPoint; 52 class DOMPoint;
52 class DictionaryTest; 53 class DictionaryTest;
53 class Document; 54 class Document;
54 class DocumentMarker; 55 class DocumentMarker;
55 class Element; 56 class Element;
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 const Vector<String>& policyAreas); 381 const Vector<String>& policyAreas);
381 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( 382 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(
382 const String& scheme); 383 const String& scheme);
383 384
384 TypeConversions* typeConversions() const; 385 TypeConversions* typeConversions() const;
385 PrivateScriptTest* privateScriptTest() const; 386 PrivateScriptTest* privateScriptTest() const;
386 DictionaryTest* dictionaryTest() const; 387 DictionaryTest* dictionaryTest() const;
387 UnionTypesTest* unionTypesTest() const; 388 UnionTypesTest* unionTypesTest() const;
388 OriginTrialsTest* originTrialsTest() const; 389 OriginTrialsTest* originTrialsTest() const;
389 CallbackFunctionTest* callbackFunctionTest() const; 390 CallbackFunctionTest* callbackFunctionTest() const;
391 CacheAwareFontDisplayTest* cacheAwareFontDisplayTest(
392 const String& fontUrl) const;
390 393
391 Vector<String> getReferencedFilePaths() const; 394 Vector<String> getReferencedFilePaths() const;
392 395
393 void startTrackingRepaints(Document*, ExceptionState&); 396 void startTrackingRepaints(Document*, ExceptionState&);
394 void stopTrackingRepaints(Document*, ExceptionState&); 397 void stopTrackingRepaints(Document*, ExceptionState&);
395 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks( 398 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(
396 Node*, 399 Node*,
397 ExceptionState&); 400 ExceptionState&);
398 void forceFullRepaint(Document*, ExceptionState&); 401 void forceFullRepaint(Document*, ExceptionState&);
399 402
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 unsigned index, 545 unsigned index,
543 ExceptionState&); 546 ExceptionState&);
544 Member<InternalRuntimeFlags> m_runtimeFlags; 547 Member<InternalRuntimeFlags> m_runtimeFlags;
545 548
546 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 549 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
547 }; 550 };
548 551
549 } // namespace blink 552 } // namespace blink
550 553
551 #endif // Internals_h 554 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698