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

Unified Diff: Source/wtf/StackBounds.h

Issue 13901012: Remove OS(WINCE) as blink and chromium does not support WinCe. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
Index: Source/wtf/StackBounds.h
diff --git a/Source/wtf/StackBounds.h b/Source/wtf/StackBounds.h
index 7844cba3d09e66951d457bf61b54a6727b306dd1..069e4cf4476bbce263741ecddb261414983c695d 100644
--- a/Source/wtf/StackBounds.h
+++ b/Source/wtf/StackBounds.h
@@ -97,11 +97,7 @@ private:
bool isGrowingDownward() const
jamesr 2013/04/20 01:37:01 this function could also be simplified (to nothing
{
ASSERT(m_origin && m_bound);
-#if OS(WINCE)
- return m_origin > m_bound;
-#else
return true;
-#endif
}
void checkConsistency() const

Powered by Google App Engine
This is Rietveld 408576698