~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/svg/ElementTimeControl.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
 
3
 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au>
3
4
 *
4
5
 * Redistribution and use in source and binary forms, with or without
5
6
 * modification, are permitted provided that the following conditions
35
36
    class ElementTimeControl {
36
37
    public:
37
38
        virtual ~ElementTimeControl() {}
38
 
        virtual bool beginElement(ExceptionCode&) = 0;
39
 
        virtual bool beginElementAt(float offset, ExceptionCode&) = 0;
40
 
        virtual bool endElement(ExceptionCode&) = 0;
41
 
        virtual bool endElementAt(float offset, ExceptionCode&) = 0;
 
39
        virtual void beginElement() = 0;
 
40
        virtual void beginElementAt(float offset) = 0;
 
41
        virtual void endElement() = 0;
 
42
        virtual void endElementAt(float offset) = 0;
42
43
    };
43
44
        
44
45
}