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

Side by Side Diff: Source/core/layout/LayoutScrollbarPart.h

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 8 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/layout/LayoutScrollbar.cpp ('k') | Source/core/layout/LayoutScrollbarPart.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) 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 virtual LayoutUnit marginRight() const override 69 virtual LayoutUnit marginRight() const override
70 { 70 {
71 ASSERT(isIntegerValue(LayoutBlock::marginRight())); 71 ASSERT(isIntegerValue(LayoutBlock::marginRight()));
72 return LayoutBlock::marginRight(); 72 return LayoutBlock::marginRight();
73 } 73 }
74 74
75 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutScrollbarPart || LayoutBlock::isOfType(type); } 75 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutScrollbarPart || LayoutBlock::isOfType(type); }
76 LayoutObject* rendererOwningScrollbar() const; 76 LayoutObject* rendererOwningScrollbar() const;
77 77
78 protected: 78 protected:
79 virtual void styleWillChange(StyleDifference, const LayoutStyle& newStyle) o verride; 79 virtual void styleWillChange(StyleDifference, const ComputedStyle& newStyle) override;
80 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov erride; 80 virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
81 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; 81 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
82 82
83 private: 83 private:
84 LayoutScrollbarPart(LayoutScrollbar*, ScrollbarPart); 84 LayoutScrollbarPart(LayoutScrollbar*, ScrollbarPart);
85 85
86 virtual void computePreferredLogicalWidths() override; 86 virtual void computePreferredLogicalWidths() override;
87 87
88 // Have all padding getters return 0. The important point here is to avoid r esolving percents 88 // Have all padding getters return 0. The important point here is to avoid r esolving percents
89 // against the containing block, since scroll bar corners don't always have one (so it would 89 // against the containing block, since scroll bar corners don't always have one (so it would
90 // crash). Scroll bar corners are not actually laid out, and they don't have child content, so 90 // crash). Scroll bar corners are not actually laid out, and they don't have child content, so
(...skipping 15 matching lines...) Expand all
106 106
107 LayoutScrollbar* m_scrollbar; 107 LayoutScrollbar* m_scrollbar;
108 ScrollbarPart m_part; 108 ScrollbarPart m_part;
109 }; 109 };
110 110
111 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutScrollbarPart, isLayoutScrollbarPart()); 111 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutScrollbarPart, isLayoutScrollbarPart());
112 112
113 } // namespace blink 113 } // namespace blink
114 114
115 #endif // LayoutScrollbarPart_h 115 #endif // LayoutScrollbarPart_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutScrollbar.cpp ('k') | Source/core/layout/LayoutScrollbarPart.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698