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

Unified Diff: Source/core/layout/LayoutBlockFlow.cpp

Issue 1106693002: Move the anonymous decoration to decoratedName. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/LayoutBlockFlow.h ('k') | Source/core/layout/LayoutDeprecatedFlexibleBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutBlockFlow.cpp
diff --git a/Source/core/layout/LayoutBlockFlow.cpp b/Source/core/layout/LayoutBlockFlow.cpp
index aca6614f63020c9ff0ce03c581cb172d1512d3a7..ca5b863f004df5b20aac290daf9e339685dc4198 100644
--- a/Source/core/layout/LayoutBlockFlow.cpp
+++ b/Source/core/layout/LayoutBlockFlow.cpp
@@ -3150,20 +3150,4 @@ void LayoutBlockFlow::positionDialog()
dialog->setCentered(top);
}
-const char* LayoutBlockFlow::name() const
-{
- if (style()) {
- if (isAnonymousColumnsBlock())
- return "LayoutBlockFlow (anonymous multi-column)";
- if (isAnonymousColumnSpanBlock())
- return "LayoutBlockFlow (anonymous multi-column span)";
- if (isAnonymousBlock())
- return "LayoutBlockFlow (anonymous)";
- }
- if (isAnonymous())
- return "LayoutBlockFlow (anonymous)";
- return "LayoutBlockFlow";
-}
-
-
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutBlockFlow.h ('k') | Source/core/layout/LayoutDeprecatedFlexibleBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698