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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_length_utils.h

Issue 2426493003: [LayoutNG] Capitalize functions in ng_length_utils.h (Closed)
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h b/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
index 2a08e928c5546666b3d008978f9709fadf79d3d6..c9eafc071031624b1f28a2d3382e181399b01f52 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
@@ -28,14 +28,14 @@ enum class LengthResolveType {
// Convert an inline-axis length to a layout unit using the given constraint
// space.
-CORE_EXPORT LayoutUnit resolveInlineLength(const NGConstraintSpace&,
+CORE_EXPORT LayoutUnit ResolveInlineLength(const NGConstraintSpace&,
const ComputedStyle&,
const Length&,
LengthResolveType);
// Convert a block-axis length to a layout unit using the given constraint
// space and content size.
-CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&,
+CORE_EXPORT LayoutUnit ResolveBlockLength(const NGConstraintSpace&,
const ComputedStyle&,
const Length&,
LayoutUnit contentSize,
@@ -44,24 +44,24 @@ CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&,
// Resolves the given length to a layout unit, constraining it by the min
// logical width and max logical width properties from the ComputedStyle
// object.
-CORE_EXPORT LayoutUnit computeInlineSizeForFragment(const NGConstraintSpace&,
+CORE_EXPORT LayoutUnit ComputeInlineSizeForFragment(const NGConstraintSpace&,
const ComputedStyle&);
// Resolves the given length to a layout unit, constraining it by the min
// logical height and max logical height properties from the ComputedStyle
// object.
-CORE_EXPORT LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace&,
+CORE_EXPORT LayoutUnit ComputeBlockSizeForFragment(const NGConstraintSpace&,
const ComputedStyle&,
LayoutUnit contentSize);
-CORE_EXPORT NGBoxStrut computeMargins(const NGConstraintSpace&,
+CORE_EXPORT NGBoxStrut ComputeMargins(const NGConstraintSpace&,
const ComputedStyle&,
const NGWritingMode writing_mode,
const NGDirection direction);
-CORE_EXPORT NGBoxStrut computeBorders(const ComputedStyle&);
+CORE_EXPORT NGBoxStrut ComputeBorders(const ComputedStyle&);
-CORE_EXPORT NGBoxStrut computePadding(const NGConstraintSpace&,
+CORE_EXPORT NGBoxStrut ComputePadding(const NGConstraintSpace&,
const ComputedStyle&);
// Resolves margin: auto in the inline direction after a box has been laid out.
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_box.cc ('k') | third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698