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

Side by Side Diff: Source/core/testing/Internals.idl

Issue 243793006: HTML Imports: Teach preloader about HTML Imports. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 16 matching lines...) Expand all
27 [ 27 [
28 DoNotCheckConstants, 28 DoNotCheckConstants,
29 WillBeGarbageCollected, 29 WillBeGarbageCollected,
30 ] interface Internals { 30 ] interface Internals {
31 DOMString address(Node node); 31 DOMString address(Node node);
32 32
33 GCObservation observeGC(any observed); 33 GCObservation observeGC(any observed);
34 34
35 [RaisesException] DOMString elementRenderTreeAsText(Element element); 35 [RaisesException] DOMString elementRenderTreeAsText(Element element);
36 boolean isPreloaded(DOMString url); 36 boolean isPreloaded(DOMString url);
37 boolean isPreloadedBy(DOMString url, Document document);
37 boolean isLoadingFromMemoryCache(DOMString url); 38 boolean isLoadingFromMemoryCache(DOMString url);
38 39
39 void crash(); 40 void crash();
40 41
41 void setStyleResolverStatsEnabled(boolean enabled); 42 void setStyleResolverStatsEnabled(boolean enabled);
42 [RaisesException] DOMString styleResolverStatsReport(); 43 [RaisesException] DOMString styleResolverStatsReport();
43 [RaisesException] DOMString styleResolverStatsTotalsReport(); 44 [RaisesException] DOMString styleResolverStatsTotalsReport();
44 45
45 [RaisesException] boolean isSharingStyle(Element element1, Element element2) ; 46 [RaisesException] boolean isSharingStyle(Element element1, Element element2) ;
46 47
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 [CallWith=ExecutionContext] Promise createPromise(); 278 [CallWith=ExecutionContext] Promise createPromise();
278 [CallWith=ExecutionContext] Promise createResolvedPromise(any value); 279 [CallWith=ExecutionContext] Promise createResolvedPromise(any value);
279 [CallWith=ExecutionContext] Promise createRejectedPromise(any reason); 280 [CallWith=ExecutionContext] Promise createRejectedPromise(any reason);
280 [CallWith=ExecutionContext] Promise addOneToPromise(Promise promise); 281 [CallWith=ExecutionContext] Promise addOneToPromise(Promise promise);
281 282
282 void startSpeechInput(Element element); 283 void startSpeechInput(Element element);
283 void setValueForUser(Element element, DOMString value); 284 void setValueForUser(Element element, DOMString value);
284 285
285 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe ngth); 286 DOMString textSurroundingNode(Node node, long x, long y, unsigned long maxLe ngth);
286 }; 287 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698