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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Capitalize the prefix. Created 4 years 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: third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
index 1daf0bd50f1b5327da254f3701abc1101eca9960..d3f5e95913370b7f50300bbd30db3b24b06de1fe 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp
@@ -615,7 +615,7 @@ bool ScriptStreamer::startStreamingInternal(PendingScript* script,
// produce parser cache if the non-streaming compile takes advantage of it.
v8::ScriptCompiler::CompileOptions compileOption =
v8::ScriptCompiler::kNoCompileOptions;
- if (settings->v8CacheOptions() == V8CacheOptionsParse)
+ if (settings->GetV8CacheOptions() == V8CacheOptionsParse)
compileOption = v8::ScriptCompiler::kProduceParserCache;
// The Resource might go out of scope if the script is no longer

Powered by Google App Engine
This is Rietveld 408576698