Chromium Code Reviews| Index: Source/core/html/HTMLImportsHost.h |
| diff --git a/Source/core/animation/AnimatableValue.h b/Source/core/html/HTMLImportsHost.h |
| similarity index 87% |
| copy from Source/core/animation/AnimatableValue.h |
| copy to Source/core/html/HTMLImportsHost.h |
| index 238766112da5a305c156fe0376712f61a4565753..b514bda9d937ed4529cb89dca8887aa742759df7 100644 |
| --- a/Source/core/animation/AnimatableValue.h |
| +++ b/Source/core/html/HTMLImportsHost.h |
| @@ -28,20 +28,21 @@ |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| -#ifndef AnimatableValue_h |
| -#define AnimatableValue_h |
| - |
| -#include "core/css/CSSValue.h" |
| -#include "wtf/PassRefPtr.h" |
| +#ifndef HTMLImportsHost_h |
| +#define HTMLImportsHost_h |
| namespace WebCore { |
| -// FIXME: This class is currently just a stub. |
| -class AnimatableValue { |
| +class HTMLImports; |
| +class SecurityContext; |
| + |
| +class HTMLImportsHost { |
|
dglazkov
2013/05/23 18:32:00
ImportsMasterDocument maybe? :)
Hajime Morrita
2013/05/24 02:28:27
I'd keep Document concept away.
But you're right.
|
| public: |
| - PassRefPtr<CSSValue> toCSSValue() const; |
| + virtual ~HTMLImportsHost() { } |
| + virtual void didLoadAllImports() = 0; |
| + virtual SecurityContext* importsContext() = 0; |
| }; |
| } // namespace WebCore |
| -#endif // AnimatableValue_h |
| +#endif // HTMLImportsHost_h |