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

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

Issue 2347663002: [LayoutNG] Multi-exclusion aware layout opportunities (Closed)
Patch Set: Rebase w/HEAD Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698