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

Unified Diff: Source/core/css/CSSGrammar.y.in

Issue 28333004: Move even more data from .data to .rodata section (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « no previous file | Source/core/inspector/WorkerDebuggerAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSGrammar.y.in
diff --git a/Source/core/css/CSSGrammar.y.in b/Source/core/css/CSSGrammar.y.in
index 1fc7d7a490aa3b220c33befa154bc2d66445d4f7..f9be53d22077b400e4f25ac3b4a38adbde5ebf9d 100644
--- a/Source/core/css/CSSGrammar.y.in
+++ b/Source/core/css/CSSGrammar.y.in
@@ -1225,7 +1225,7 @@ selector:
namespace_selector:
/* empty */ '|' { $$.clear(); }
- | '*' '|' { static LChar star = '*'; $$.init(&star, 1); }
+ | '*' '|' { static const LChar star = '*'; $$.init(&star, 1); }
| IDENT '|'
;
@@ -1278,7 +1278,7 @@ element_name:
$$ = $1;
}
| '*' {
- static LChar star = '*';
+ static const LChar star = '*';
$$.init(&star, 1);
}
;
« no previous file with comments | « no previous file | Source/core/inspector/WorkerDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698