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

Side by Side Diff: Source/modules/accessibility/AXTableRow.h

Issue 1175533004: Refactor: Clear m_axObjectCache when AXObject detaches (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added ASSERT Created 5 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 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 20 matching lines...) Expand all
31 31
32 #include "modules/accessibility/AXLayoutObject.h" 32 #include "modules/accessibility/AXLayoutObject.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class AXObjectCacheImpl; 36 class AXObjectCacheImpl;
37 37
38 class AXTableRow : public AXLayoutObject { 38 class AXTableRow : public AXLayoutObject {
39 39
40 protected: 40 protected:
41 AXTableRow(LayoutObject*, AXObjectCacheImpl*); 41 AXTableRow(LayoutObject*, AXObjectCacheImpl&);
42 42
43 public: 43 public:
44 static PassRefPtr<AXTableRow> create(LayoutObject*, AXObjectCacheImpl*); 44 static PassRefPtr<AXTableRow> create(LayoutObject*, AXObjectCacheImpl&);
45 virtual ~AXTableRow(); 45 virtual ~AXTableRow();
46 46
47 virtual bool isTableRow() const override final; 47 virtual bool isTableRow() const override final;
48 48
49 // retrieves the "row" header (a th tag in the rightmost column) 49 // retrieves the "row" header (a th tag in the rightmost column)
50 virtual AXObject* headerObject(); 50 virtual AXObject* headerObject();
51 // retrieves the "row" headers (th, scope) from left to right for the each r ow. 51 // retrieves the "row" headers (th, scope) from left to right for the each r ow.
52 virtual void headerObjectsForRow(AccessibilityChildrenVector&); 52 virtual void headerObjectsForRow(AccessibilityChildrenVector&);
53 AXObject* parentTable() const; 53 AXObject* parentTable() const;
54 54
(...skipping 11 matching lines...) Expand all
66 int m_rowIndex; 66 int m_rowIndex;
67 67
68 virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override final; 68 virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override final;
69 }; 69 };
70 70
71 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); 71 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow());
72 72
73 } // namespace blink 73 } // namespace blink
74 74
75 #endif // AXTableRow_h 75 #endif // AXTableRow_h
OLDNEW
« no previous file with comments | « Source/modules/accessibility/AXTableHeaderContainer.cpp ('k') | Source/modules/accessibility/AXTableRow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698