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

Unified Diff: sky/engine/core/css/resolver/StyleAdjuster.cpp

Issue 739573003: Fix android build. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/resolver/StyleAdjuster.cpp
diff --git a/sky/engine/core/css/resolver/StyleAdjuster.cpp b/sky/engine/core/css/resolver/StyleAdjuster.cpp
index 0977f9bfcb2168291ca3254eb0ffc70207bc7b64..42b6a7f915b249b3b73dc82057e6e5e778d5271d 100644
--- a/sky/engine/core/css/resolver/StyleAdjuster.cpp
+++ b/sky/engine/core/css/resolver/StyleAdjuster.cpp
@@ -58,6 +58,9 @@ static bool requiresOnlyBlockChildren(RenderStyle* parentStyle)
ASSERT_NOT_REACHED();
return false;
}
+
+ ASSERT_NOT_REACHED();
+ return false;
}
static EDisplay equivalentInlineDisplay(EDisplay display)
@@ -82,6 +85,9 @@ static EDisplay equivalentInlineDisplay(EDisplay display)
ASSERT_NOT_REACHED();
return NONE;
}
+
+ ASSERT_NOT_REACHED();
+ return NONE;
}
static EDisplay equivalentBlockDisplay(EDisplay display)
@@ -103,6 +109,9 @@ static EDisplay equivalentBlockDisplay(EDisplay display)
ASSERT_NOT_REACHED();
return NONE;
}
+
+ ASSERT_NOT_REACHED();
+ return NONE;
}
// CSS requires text-decoration to be reset at each DOM element for tables,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698