Skip to content

Commit

Permalink
Fix build after merge.
Browse files Browse the repository at this point in the history
* Timer API changes.
  • Loading branch information
pulkomandy committed Nov 25, 2014
1 parent 892a3f9 commit 9cc33f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/WebCore/accessibility/AXObjectCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ bool isNodeAriaVisible(Node*);
#if !HAVE(ACCESSIBILITY)
inline AccessibilityObjectInclusion AXComputedObjectAttributeCache::getIgnored(AXID) const { return DefaultBehavior; }
inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(this, (Timer::TimerFiredFunction) nullptr) { }
//inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(this, (Timer::TimerFiredFunction) nullptr) { }
inline AXObjectCache::~AXObjectCache() { }
inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::get(RenderObject*) { return nullptr; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ class AcceleratedCompositingContext {
void compositeLayers(BRect updateRect);

bool flushPendingLayerChanges();
void syncLayers(Timer<AcceleratedCompositingContext>*);
void syncLayers(Timer*);

BWebView* m_view;
BRect m_updateRect;

GraphicsLayer* m_rootLayer;
Timer<AcceleratedCompositingContext> m_syncTimer;
Timer m_syncTimer;

#if USE(TEXTURE_MAPPER)
std::unique_ptr<TextureMapper> m_textureMapper;
Expand Down

0 comments on commit 9cc33f5

Please sign in to comment.