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

Unified Diff: src/i18n.h

Issue 902313002: Enclose break_iterator code with !UCONFIG_NO_BREAK_ITERATOR (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 | src/i18n.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/i18n.h
diff --git a/src/i18n.h b/src/i18n.h
index a50c43a429971f185a471fc0e8393c7c8b58b633..94254621c42ef4205555c5c12765709f502fae15 100644
--- a/src/i18n.h
+++ b/src/i18n.h
@@ -10,7 +10,9 @@
#include "unicode/uversion.h"
namespace U_ICU_NAMESPACE {
+#if !UCONFIG_NO_BREAK_ITERATION
class BreakIterator;
+#endif
class Collator;
class DecimalFormat;
class SimpleDateFormat;
@@ -102,6 +104,7 @@ class Collator {
Collator();
};
+#if !UCONFIG_NO_BREAK_ITERATION
class BreakIterator {
public:
// Create a BreakIterator for the specificied locale and options. Returns the
@@ -124,7 +127,7 @@ class BreakIterator {
private:
BreakIterator();
};
-
+#endif
} } // namespace v8::internal
#endif // V8_I18N_H_
« no previous file with comments | « no previous file | src/i18n.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698