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 23 matching lines...) Expand all Loading... |
34 #include "bindings/core/v8/SerializedScriptValue.h" | 34 #include "bindings/core/v8/SerializedScriptValue.h" |
35 #include "bindings/core/v8/SerializedScriptValueFactory.h" | 35 #include "bindings/core/v8/SerializedScriptValueFactory.h" |
36 #include "bindings/core/v8/V8IteratorResultValue.h" | 36 #include "bindings/core/v8/V8IteratorResultValue.h" |
37 #include "bindings/core/v8/V8ThrowException.h" | 37 #include "bindings/core/v8/V8ThrowException.h" |
38 #include "core/HTMLNames.h" | 38 #include "core/HTMLNames.h" |
39 #include "core/SVGNames.h" | 39 #include "core/SVGNames.h" |
40 #include "core/animation/AnimationTimeline.h" | 40 #include "core/animation/AnimationTimeline.h" |
41 #include "core/css/StyleSheetContents.h" | 41 #include "core/css/StyleSheetContents.h" |
42 #include "core/css/resolver/StyleResolver.h" | 42 #include "core/css/resolver/StyleResolver.h" |
43 #include "core/css/resolver/StyleResolverStats.h" | 43 #include "core/css/resolver/StyleResolverStats.h" |
44 #include "core/css/resolver/ViewportStyleResolver.h" | |
45 #include "core/dom/ClientRect.h" | 44 #include "core/dom/ClientRect.h" |
46 #include "core/dom/ClientRectList.h" | 45 #include "core/dom/ClientRectList.h" |
47 #include "core/dom/DOMArrayBuffer.h" | 46 #include "core/dom/DOMArrayBuffer.h" |
48 #include "core/dom/DOMNodeIds.h" | 47 #include "core/dom/DOMNodeIds.h" |
49 #include "core/dom/DOMPoint.h" | 48 #include "core/dom/DOMPoint.h" |
50 #include "core/dom/DOMStringList.h" | 49 #include "core/dom/DOMStringList.h" |
51 #include "core/dom/Document.h" | 50 #include "core/dom/Document.h" |
52 #include "core/dom/Element.h" | 51 #include "core/dom/Element.h" |
53 #include "core/dom/ExceptionCode.h" | 52 #include "core/dom/ExceptionCode.h" |
54 #include "core/dom/Iterator.h" | 53 #include "core/dom/Iterator.h" |
(...skipping 2509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2564 } | 2563 } |
2565 | 2564 |
2566 String Internals::getProgrammaticScrollAnimationState(Node* node) const | 2565 String Internals::getProgrammaticScrollAnimationState(Node* node) const |
2567 { | 2566 { |
2568 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node)) | 2567 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node)) |
2569 return scrollableArea->programmaticScrollAnimator().runStateAsText(); | 2568 return scrollableArea->programmaticScrollAnimator().runStateAsText(); |
2570 return String(); | 2569 return String(); |
2571 } | 2570 } |
2572 | 2571 |
2573 } // namespace blink | 2572 } // namespace blink |
OLD | NEW |