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

Unified Diff: Source/core/frame/Frame.h

Issue 139273007: Web Animations: Remove legacy animations engine. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix TestExpectations. Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/RenderTreeBuilder.cpp ('k') | Source/core/frame/Frame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Frame.h
diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
index 6ef56b4035e3a12284babdf74defd4f617535771..5a76b2c67759bdc412aecdd14b567fecab2c3e96 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -43,7 +43,6 @@ class WebLayer;
namespace WebCore {
- class AnimationController;
class ChromeClient;
class Color;
class DOMWindow;
@@ -150,7 +149,6 @@ namespace WebCore {
NavigationScheduler& navigationScheduler() const;
FrameSelection& selection() const;
FrameTree& tree() const;
- AnimationController& animation() const;
InputMethodController& inputMethodController() const;
FetchContext& fetchContext() const { return loader().fetchContext(); }
ScriptController& script();
@@ -239,7 +237,6 @@ namespace WebCore {
const OwnPtr<SpellChecker> m_spellChecker;
const OwnPtr<FrameSelection> m_selection;
const OwnPtr<EventHandler> m_eventHandler;
- OwnPtr<AnimationController> m_animationController;
OwnPtr<InputMethodController> m_inputMethodController;
RefPtr<FrameInit> m_frameInit;
@@ -299,11 +296,6 @@ namespace WebCore {
return *m_spellChecker;
}
- inline AnimationController& Frame::animation() const
- {
- return *m_animationController;
- }
-
inline InputMethodController& Frame::inputMethodController() const
{
return *m_inputMethodController;
« no previous file with comments | « Source/core/dom/RenderTreeBuilder.cpp ('k') | Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698