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

Side by Side Diff: Source/core/accessibility/AXMediaControls.h

Issue 202953005: Remove a lot of dead code from AXNodeObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 virtual AccessibilityRole roleValue() const OVERRIDE; 44 virtual AccessibilityRole roleValue() const OVERRIDE;
45 45
46 virtual String title() const OVERRIDE FINAL; 46 virtual String title() const OVERRIDE FINAL;
47 virtual String accessibilityDescription() const OVERRIDE; 47 virtual String accessibilityDescription() const OVERRIDE;
48 virtual String helpText() const OVERRIDE; 48 virtual String helpText() const OVERRIDE;
49 49
50 protected: 50 protected:
51 explicit AccessibilityMediaControl(RenderObject*); 51 explicit AccessibilityMediaControl(RenderObject*);
52 MediaControlElementType controlType() const; 52 MediaControlElementType controlType() const;
53 virtual void accessibilityText(Vector<AccessibilityText>&) OVERRIDE FINAL;
54 virtual bool computeAccessibilityIsIgnored() const OVERRIDE; 53 virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
55 }; 54 };
56 55
57 56
58 class AccessibilityMediaTimeline FINAL : public AXSlider { 57 class AccessibilityMediaTimeline FINAL : public AXSlider {
59 58
60 public: 59 public:
61 static PassRefPtr<AXObject> create(RenderObject*); 60 static PassRefPtr<AXObject> create(RenderObject*);
62 virtual ~AccessibilityMediaTimeline() { } 61 virtual ~AccessibilityMediaTimeline() { }
63 62
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 100
102 private: 101 private:
103 explicit AccessibilityMediaTimeDisplay(RenderObject*); 102 explicit AccessibilityMediaTimeDisplay(RenderObject*);
104 virtual bool computeAccessibilityIsIgnored() const OVERRIDE; 103 virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
105 }; 104 };
106 105
107 106
108 } // namespace WebCore 107 } // namespace WebCore
109 108
110 #endif // AXMediaControls_h 109 #endif // AXMediaControls_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXImageMapLink.cpp ('k') | Source/core/accessibility/AXMediaControls.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698