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

Unified Diff: athena/home/home_card_impl.cc

Issue 404153002: Fix a compile error caused in some compiler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/home/home_card_impl.cc
diff --git a/athena/home/home_card_impl.cc b/athena/home/home_card_impl.cc
index aa3767d1fd50033fa447b4678b54f113eca20403..f26acb98b00107da928e327ab6513784039f00a3 100644
--- a/athena/home/home_card_impl.cc
+++ b/athena/home/home_card_impl.cc
@@ -199,9 +199,10 @@ class HomeCardImpl : public HomeCard,
case VISIBLE_MINIMIZED:
return kHomeCardMinimizedHeight;
case HIDDEN:
- NOTREACHED();
- return -1;
+ break;
}
+ NOTREACHED();
+ return -1;
}
virtual int GetHorizontalMargin() const OVERRIDE {
« 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