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

Side by Side Diff: third_party/WebKit/Source/web/ChromeClientImpl.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Fix copyrights and years. Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 bool haveScrollEventHandlers() const override; 117 bool haveScrollEventHandlers() const override;
118 void setTouchAction(TouchAction) override; 118 void setTouchAction(TouchAction) override;
119 119
120 GraphicsLayerFactory* graphicsLayerFactory() const override; 120 GraphicsLayerFactory* graphicsLayerFactory() const override;
121 121
122 // Pass 0 as the GraphicsLayer to detatch the root layer. 122 // Pass 0 as the GraphicsLayer to detatch the root layer.
123 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override ; 123 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override ;
124 124
125 void didPaint(const PaintArtifact&) override; 125 void didPaint(const PaintArtifact&) override;
126 126
127 void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca lFrame* localRoot) override; 127 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr ame* localRoot) override;
128 void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca lFrame* localRoot) override; 128 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr ame* localRoot) override;
129 129
130 void enterFullScreenForElement(Element*) override; 130 void enterFullScreenForElement(Element*) override;
131 void exitFullScreenForElement(Element*) override; 131 void exitFullScreenForElement(Element*) override;
132 132
133 void clearCompositedSelection() override; 133 void clearCompositedSelection() override;
134 void updateCompositedSelection(const CompositedSelection&) override; 134 void updateCompositedSelection(const CompositedSelection&) override;
135 135
136 // ChromeClient methods: 136 // ChromeClient methods:
137 void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) override; 137 void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) override;
138 String acceptLanguages() override; 138 String acceptLanguages() override;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 Cursor m_lastSetMouseCursorForTesting; 195 Cursor m_lastSetMouseCursorForTesting;
196 bool m_cursorOverridden; 196 bool m_cursorOverridden;
197 bool m_didRequestNonEmptyToolTip; 197 bool m_didRequestNonEmptyToolTip;
198 }; 198 };
199 199
200 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 200 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
201 201
202 } // namespace blink 202 } // namespace blink
203 203
204 #endif 204 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/scroll/ScrollableArea.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698