| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); | 277 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); |
| 277 | 278 |
| 278 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 279 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 279 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); | 280 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); |
| 280 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 281 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
| 281 | 282 |
| 282 TypeConversions* typeConversions() const; | 283 TypeConversions* typeConversions() const; |
| 283 PrivateScriptTest* privateScriptTest() const; | 284 PrivateScriptTest* privateScriptTest() const; |
| 284 DictionaryTest* dictionaryTest() const; | 285 DictionaryTest* dictionaryTest() const; |
| 285 UnionTypesTest* unionTypesTest() const; | 286 UnionTypesTest* unionTypesTest() const; |
| 287 CallbackFunctionTest* callbackFunctionTest() const; |
| 286 | 288 |
| 287 Vector<String> getReferencedFilePaths() const; | 289 Vector<String> getReferencedFilePaths() const; |
| 288 | 290 |
| 289 void startTrackingRepaints(Document*, ExceptionState&); | 291 void startTrackingRepaints(Document*, ExceptionState&); |
| 290 void stopTrackingRepaints(Document*, ExceptionState&); | 292 void stopTrackingRepaints(Document*, ExceptionState&); |
| 291 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 293 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 292 void forceFullRepaint(Document*, ExceptionState&); | 294 void forceFullRepaint(Document*, ExceptionState&); |
| 293 | 295 |
| 294 ClientRectList* draggableRegions(Document*, ExceptionState&); | 296 ClientRectList* draggableRegions(Document*, ExceptionState&); |
| 295 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 297 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 | 418 |
| 417 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 419 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 418 Member<InternalRuntimeFlags> m_runtimeFlags; | 420 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 419 | 421 |
| 420 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 422 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 421 }; | 423 }; |
| 422 | 424 |
| 423 } // namespace blink | 425 } // namespace blink |
| 424 | 426 |
| 425 #endif // Internals_h | 427 #endif // Internals_h |
| OLD | NEW |