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

Unified Diff: src/unicode.h

Issue 2416243002: Make unittests work in component build (Closed)
Patch Set: updates Created 4 years, 2 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 | « src/source-position-table.h ('k') | src/utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/unicode.h
diff --git a/src/unicode.h b/src/unicode.h
index 1299a8ff9afeeb9aa33c01a16276fe6fd8ab7c49..1b98a472f20bf06de2aad75889f27732872864c0 100644
--- a/src/unicode.h
+++ b/src/unicode.h
@@ -178,16 +178,16 @@ struct Lowercase {
struct Letter {
static bool Is(uchar c);
};
-struct ID_Start {
+struct V8_EXPORT_PRIVATE ID_Start {
static bool Is(uchar c);
};
-struct ID_Continue {
+struct V8_EXPORT_PRIVATE ID_Continue {
static bool Is(uchar c);
};
-struct WhiteSpace {
+struct V8_EXPORT_PRIVATE WhiteSpace {
static bool Is(uchar c);
};
-struct LineTerminator {
+struct V8_EXPORT_PRIVATE LineTerminator {
static bool Is(uchar c);
};
struct ToLowercase {
« no previous file with comments | « src/source-position-table.h ('k') | src/utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698