| Index: third_party/WebKit/Source/core/layout/FragmentainerIterator.h
 | 
| diff --git a/third_party/WebKit/Source/core/layout/FragmentainerIterator.h b/third_party/WebKit/Source/core/layout/FragmentainerIterator.h
 | 
| index 9e6b381a4d546e2d654728ae28df5bac518cfb7a..b4c39a8252bcefebcba7afdcdab83559081c5063 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/FragmentainerIterator.h
 | 
| +++ b/third_party/WebKit/Source/core/layout/FragmentainerIterator.h
 | 
| @@ -11,37 +11,34 @@
 | 
|  
 | 
|  class MultiColumnFragmentainerGroup;
 | 
|  
 | 
| -// Used to find the fragmentainers that intersect with a given portion of the
 | 
| -// flow thread. The portion typically corresponds to the bounds of some
 | 
| -// descendant layout object. The iterator walks in block direction order.
 | 
| +// Used to find the fragmentainers that intersect with a given portion of the flow thread. The
 | 
| +// portion typically corresponds to the bounds of some descendant layout object. The iterator walks
 | 
| +// in block direction order.
 | 
|  class FragmentainerIterator {
 | 
|   public:
 | 
|    // Initialize the iterator, and move to the first fragmentainer of interest.
 | 
| -  // The clip rectangle is optional. If it's empty, it means that no clipping
 | 
| -  // will be performed, and that the only thing that can limit the set of
 | 
| -  // fragmentainers to visit is |physicalBoundingBox|.
 | 
| +  // The clip rectangle is optional. If it's empty, it means that no clipping will be performed,
 | 
| +  // and that the only thing that can limit the set of fragmentainers to visit is
 | 
| +  // |physicalBoundingBox|.
 | 
|    FragmentainerIterator(
 | 
|        const LayoutFlowThread&,
 | 
|        const LayoutRect& physicalBoundingBoxInFlowThread,
 | 
|        const LayoutRect& clipRectInMulticolContainer = LayoutRect());
 | 
|  
 | 
| -  // Advance to the next fragmentainer. Not allowed to call this if atEnd() is
 | 
| -  // true.
 | 
| +  // Advance to the next fragmentainer. Not allowed to call this if atEnd() is true.
 | 
|    void advance();
 | 
|  
 | 
|    // Return true if we have walked through all relevant fragmentainers.
 | 
|    bool atEnd() const { return !m_currentColumnSet; }
 | 
|  
 | 
| -  // The physical translation to apply to shift the box when converting from
 | 
| -  // flowthread to visual coordinates.
 | 
| +  // The physical translation to apply to shift the box when converting from flowthread to visual
 | 
| +  // coordinates.
 | 
|    LayoutSize paginationOffset() const;
 | 
|  
 | 
| -  // Return the physical content box of the current fragmentainer, relative to
 | 
| -  // the flow thread.
 | 
| +  // Return the physical content box of the current fragmentainer, relative to the flow thread.
 | 
|    LayoutRect fragmentainerInFlowThread() const;
 | 
|  
 | 
| -  // Return the physical clip rectangle of the current fragmentainer, relative
 | 
| -  // to the flow thread.
 | 
| +  // Return the physical clip rectangle of the current fragmentainer, relative to the flow thread.
 | 
|    LayoutRect clipRectInFlowThread() const;
 | 
|  
 | 
|   private:
 | 
| 
 |