OLD | NEW |
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 24 matching lines...) Expand all Loading... |
35 #include "bindings/core/v8/ScriptWrappable.h" | 35 #include "bindings/core/v8/ScriptWrappable.h" |
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 CallbackFunctionTest; |
45 class CanvasRenderingContext; | 46 class CanvasRenderingContext; |
46 class ClientRect; | 47 class ClientRect; |
47 class ClientRectList; | 48 class ClientRectList; |
48 class DOMArrayBuffer; | 49 class DOMArrayBuffer; |
49 class DOMPoint; | 50 class DOMPoint; |
50 class DictionaryTest; | 51 class DictionaryTest; |
51 class Document; | 52 class Document; |
52 class DocumentMarker; | 53 class DocumentMarker; |
53 class Element; | 54 class Element; |
54 class ExceptionState; | 55 class ExceptionState; |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 | 281 |
281 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 282 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
282 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); | 283 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); |
283 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 284 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
284 | 285 |
285 TypeConversions* typeConversions() const; | 286 TypeConversions* typeConversions() const; |
286 PrivateScriptTest* privateScriptTest() const; | 287 PrivateScriptTest* privateScriptTest() const; |
287 DictionaryTest* dictionaryTest() const; | 288 DictionaryTest* dictionaryTest() const; |
288 UnionTypesTest* unionTypesTest() const; | 289 UnionTypesTest* unionTypesTest() const; |
289 OriginTrialsTest* originTrialsTest() const; | 290 OriginTrialsTest* originTrialsTest() const; |
| 291 CallbackFunctionTest* callbackFunctionTest() const; |
290 | 292 |
291 Vector<String> getReferencedFilePaths() const; | 293 Vector<String> getReferencedFilePaths() const; |
292 | 294 |
293 void startTrackingRepaints(Document*, ExceptionState&); | 295 void startTrackingRepaints(Document*, ExceptionState&); |
294 void stopTrackingRepaints(Document*, ExceptionState&); | 296 void stopTrackingRepaints(Document*, ExceptionState&); |
295 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 297 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
296 void forceFullRepaint(Document*, ExceptionState&); | 298 void forceFullRepaint(Document*, ExceptionState&); |
297 | 299 |
298 ClientRectList* draggableRegions(Document*, ExceptionState&); | 300 ClientRectList* draggableRegions(Document*, ExceptionState&); |
299 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 301 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 | 422 |
421 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 423 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
422 Member<InternalRuntimeFlags> m_runtimeFlags; | 424 Member<InternalRuntimeFlags> m_runtimeFlags; |
423 | 425 |
424 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 426 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
425 }; | 427 }; |
426 | 428 |
427 } // namespace blink | 429 } // namespace blink |
428 | 430 |
429 #endif // Internals_h | 431 #endif // Internals_h |
OLD | NEW |