| 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 19 matching lines...) Expand all Loading... |
| 30 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 30 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 31 #include "bindings/core/v8/Iterable.h" | 31 #include "bindings/core/v8/Iterable.h" |
| 32 #include "bindings/core/v8/ScriptPromise.h" | 32 #include "bindings/core/v8/ScriptPromise.h" |
| 33 #include "bindings/core/v8/ScriptState.h" | 33 #include "bindings/core/v8/ScriptState.h" |
| 34 #include "bindings/core/v8/ScriptValue.h" | 34 #include "bindings/core/v8/ScriptValue.h" |
| 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/PassRefPtr.h" | 40 #include "wtf/Forward.h" |
| 41 #include "wtf/RefCounted.h" | |
| 42 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
| 43 | 42 |
| 44 namespace blink { | 43 namespace blink { |
| 45 | 44 |
| 46 class CanvasRenderingContext; | 45 class CanvasRenderingContext; |
| 47 class ClientRect; | 46 class ClientRect; |
| 48 class ClientRectList; | 47 class ClientRectList; |
| 49 class DOMArrayBuffer; | 48 class DOMArrayBuffer; |
| 50 class DOMPoint; | 49 class DOMPoint; |
| 51 class DictionaryTest; | 50 class DictionaryTest; |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 | 414 |
| 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 415 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 417 Member<InternalRuntimeFlags> m_runtimeFlags; | 416 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 418 | 417 |
| 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 418 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 420 }; | 419 }; |
| 421 | 420 |
| 422 } // namespace blink | 421 } // namespace blink |
| 423 | 422 |
| 424 #endif // Internals_h | 423 #endif // Internals_h |
| OLD | NEW |