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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 1761633002: One accessibility tree per frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix is-richly-editable test Created 4 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
OLDNEW
1 /* 1 /*
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
8 8
9 This library is free software; you can redistribute it and/or 9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public 10 modify it under the terms of the GNU Library General Public
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 bool shouldUseCustomScrollbars(Element*& customScrollbarElement, LocalFrame* & customScrollbarFrame) const; 716 bool shouldUseCustomScrollbars(Element*& customScrollbarElement, LocalFrame* & customScrollbarFrame) const;
717 717
718 // Returns true if a scrollbar needs to go from native -> custom or vice ver sa. 718 // Returns true if a scrollbar needs to go from native -> custom or vice ver sa.
719 bool needsScrollbarReconstruction() const; 719 bool needsScrollbarReconstruction() const;
720 720
721 bool shouldIgnoreOverflowHidden() const; 721 bool shouldIgnoreOverflowHidden() const;
722 722
723 void updateScrollCorner(); 723 void updateScrollCorner();
724 724
725 AXObjectCache* axObjectCache() const; 725 AXObjectCache* axObjectCache() const;
726 void removeFromAXObjectCache();
727 726
728 void setLayoutSizeInternal(const IntSize&); 727 void setLayoutSizeInternal(const IntSize&);
729 728
730 bool adjustScrollbarExistence(ComputeScrollbarExistenceOption = FirstPass); 729 bool adjustScrollbarExistence(ComputeScrollbarExistenceOption = FirstPass);
731 void adjustScrollbarOpacity(); 730 void adjustScrollbarOpacity();
732 void setScrollOffsetFromUpdateScrollbars(const DoubleSize&); 731 void setScrollOffsetFromUpdateScrollbars(const DoubleSize&);
733 bool visualViewportSuppliesScrollbars() const; 732 bool visualViewportSuppliesScrollbars() const;
734 733
735 IntRect rectToCopyOnScroll() const; 734 IntRect rectToCopyOnScroll() const;
736 735
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) 927 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold)
929 setIsVisuallyNonEmpty(); 928 setIsVisuallyNonEmpty();
930 } 929 }
931 930
932 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra meView()); 931 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra meView());
933 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF rameView(), scrollableArea.isFrameView()); 932 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF rameView(), scrollableArea.isFrameView());
934 933
935 } // namespace blink 934 } // namespace blink
936 935
937 #endif // FrameView_h 936 #endif // FrameView_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698