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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.cpp

Issue 2222313002: Implement DocumentTimeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update global-interface-listing-expected.txt Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/graphics/SVGImage.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 19 matching lines...) Expand all
30 #include "bindings/core/v8/ExceptionState.h" 30 #include "bindings/core/v8/ExceptionState.h"
31 #include "bindings/core/v8/ScriptFunction.h" 31 #include "bindings/core/v8/ScriptFunction.h"
32 #include "bindings/core/v8/ScriptPromise.h" 32 #include "bindings/core/v8/ScriptPromise.h"
33 #include "bindings/core/v8/ScriptPromiseResolver.h" 33 #include "bindings/core/v8/ScriptPromiseResolver.h"
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/DocumentTimeline.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" 44 #include "core/css/resolver/ViewportStyleResolver.h"
45 #include "core/dom/ClientRect.h" 45 #include "core/dom/ClientRect.h"
46 #include "core/dom/ClientRectList.h" 46 #include "core/dom/ClientRectList.h"
47 #include "core/dom/DOMArrayBuffer.h" 47 #include "core/dom/DOMArrayBuffer.h"
48 #include "core/dom/DOMNodeIds.h" 48 #include "core/dom/DOMNodeIds.h"
49 #include "core/dom/DOMPoint.h" 49 #include "core/dom/DOMPoint.h"
50 #include "core/dom/DOMStringList.h" 50 #include "core/dom/DOMStringList.h"
(...skipping 2561 matching lines...) Expand 10 before | Expand all | Expand 10 after
2612 } 2612 }
2613 2613
2614 String Internals::getProgrammaticScrollAnimationState(Node* node) const 2614 String Internals::getProgrammaticScrollAnimationState(Node* node) const
2615 { 2615 {
2616 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node)) 2616 if (ScrollableArea* scrollableArea = scrollableAreaForNode(node))
2617 return scrollableArea->programmaticScrollAnimator().runStateAsText(); 2617 return scrollableArea->programmaticScrollAnimator().runStateAsText();
2618 return String(); 2618 return String();
2619 } 2619 }
2620 2620
2621 } // namespace blink 2621 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698