Chromium Code Reviews| Index: public/web/WebAXObject.h |
| diff --git a/public/web/WebMediaSource.h b/public/web/WebAXObject.h |
| similarity index 86% |
| copy from public/web/WebMediaSource.h |
| copy to public/web/WebAXObject.h |
| index 424a687dfa381049240e769de9e23f58da6eb576..243615ee5a93f015cff4b3250b5a2519e32e8636 100644 |
| --- a/public/web/WebMediaSource.h |
| +++ b/public/web/WebAXObject.h |
| @@ -28,21 +28,16 @@ |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| -#ifndef WebMediaSource_h |
| -#define WebMediaSource_h |
| +#ifndef WebAXObject_h |
|
aboxhall
2013/08/20 19:54:11
Did this detect a strange base version? Is git cal
jamesr
2013/08/21 02:22:52
Please upload again and use the --similarity and/o
dmazzoni
2013/08/21 03:07:58
Yeah, git treated this as a copy-and-modify - prob
dmazzoni
2013/08/22 20:58:23
Done.
|
| +#define WebAXObject_h |
| -#include "../platform/WebURL.h" |
| -#include "WebTimeRange.h" |
| +#include "WebAccessibilityObject.h" |
| namespace WebKit { |
| -class WebMediaSourceClient; |
| - |
| -class WebMediaSource { |
| -public: |
| - virtual ~WebMediaSource() { }; |
| - virtual void open(WebMediaSourceClient*) = 0; |
| -}; |
| +// TODO(dmazzoni): rename WebAccessibilityObject to WebAXObject |
| +// and get rid of this temporary typedef (http://crbug.com/269034). |
| +typedef WebAccessibilityObject WebAXObject; |
| } // namespace WebKit |