| Index: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h
|
| index 1fb3ed7a8ff94e96b543c6f56ced4c6ec4207a46..c1e6ea0159f7bab8841efed7aa3cf307b72a7afc 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h
|
| @@ -113,7 +113,7 @@ class CORE_EXPORT NGConstraintSpace final
|
| void SetFixedSize(bool inlineFixed, bool blockFixed);
|
| void SetFragmentationType(NGFragmentationType);
|
|
|
| - String toString() const;
|
| + String ToString() const;
|
|
|
| private:
|
| Member<NGPhysicalConstraintSpace> physical_space_;
|
| @@ -125,7 +125,7 @@ class CORE_EXPORT NGConstraintSpace final
|
|
|
| inline std::ostream& operator<<(std::ostream& stream,
|
| const NGConstraintSpace& value) {
|
| - return stream << value.toString();
|
| + return stream << value.ToString();
|
| }
|
|
|
| } // namespace blink
|
|
|