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

Side by Side Diff: Source/core/rendering/RenderObject.h

Issue 456733003: Remove the acceleratedCompositingForCanvas setting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm-compositingforcanvas: . Created 6 years, 4 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
« no previous file with comments | « Source/core/rendering/RenderHTMLCanvas.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 void forceChildLayout(); 724 void forceChildLayout();
725 725
726 // Used for element state updates that cannot be fixed with a 726 // Used for element state updates that cannot be fixed with a
727 // paint invalidation and do not need a relayout. 727 // paint invalidation and do not need a relayout.
728 virtual void updateFromElement() { } 728 virtual void updateFromElement() { }
729 729
730 virtual void addAnnotatedRegions(Vector<AnnotatedRegionValue>&); 730 virtual void addAnnotatedRegions(Vector<AnnotatedRegionValue>&);
731 void collectAnnotatedRegions(Vector<AnnotatedRegionValue>&); 731 void collectAnnotatedRegions(Vector<AnnotatedRegionValue>&);
732 732
733 CompositingState compositingState() const; 733 CompositingState compositingState() const;
734 virtual CompositingReasons additionalCompositingReasons(CompositingTriggerFl ags) const; 734 virtual CompositingReasons additionalCompositingReasons() const;
735 735
736 bool hitTest(const HitTestRequest&, HitTestResult&, const HitTestLocation& l ocationInContainer, const LayoutPoint& accumulatedOffset, HitTestFilter = HitTes tAll); 736 bool hitTest(const HitTestRequest&, HitTestResult&, const HitTestLocation& l ocationInContainer, const LayoutPoint& accumulatedOffset, HitTestFilter = HitTes tAll);
737 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&); 737 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&);
738 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion); 738 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion);
739 739
740 virtual PositionWithAffinity positionForPoint(const LayoutPoint&); 740 virtual PositionWithAffinity positionForPoint(const LayoutPoint&);
741 PositionWithAffinity createPositionWithAffinity(int offset, EAffinity); 741 PositionWithAffinity createPositionWithAffinity(int offset, EAffinity);
742 PositionWithAffinity createPositionWithAffinity(const Position&); 742 PositionWithAffinity createPositionWithAffinity(const Position&);
743 743
744 virtual void dirtyLinesFromChangedChild(RenderObject*); 744 virtual void dirtyLinesFromChangedChild(RenderObject*);
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 void showTree(const blink::RenderObject*); 1562 void showTree(const blink::RenderObject*);
1563 void showLineTree(const blink::RenderObject*); 1563 void showLineTree(const blink::RenderObject*);
1564 void showRenderTree(const blink::RenderObject* object1); 1564 void showRenderTree(const blink::RenderObject* object1);
1565 // We don't make object2 an optional parameter so that showRenderTree 1565 // We don't make object2 an optional parameter so that showRenderTree
1566 // can be called from gdb easily. 1566 // can be called from gdb easily.
1567 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2); 1567 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2);
1568 1568
1569 #endif 1569 #endif
1570 1570
1571 #endif // RenderObject_h 1571 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderHTMLCanvas.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698