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

Unified Diff: src/inspector/inspected-context.cc

Issue 2557883002: [inspector] align console implementation with spec (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | test/inspector/console/console-follow-spec.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/inspected-context.cc
diff --git a/src/inspector/inspected-context.cc b/src/inspector/inspected-context.cc
index dab3bba0509a193c34da7206fe921d10243633bd..82b5a1b5b4e25e5c6bc4f034da8fd8f80939b1db 100644
--- a/src/inspector/inspected-context.cc
+++ b/src/inspector/inspected-context.cc
@@ -48,9 +48,11 @@ InspectedContext::InspectedContext(V8InspectorImpl* inspector,
v8::Local<v8::Object> global = info.context->Global();
v8::Local<v8::Object> console =
V8Console::createConsole(this, info.hasMemoryOnConsole);
- if (!global
- ->Set(info.context, toV8StringInternalized(isolate, "console"),
- console)
+ v8::PropertyDescriptor descriptor(console, /* writable */ true);
+ descriptor.set_enumerable(false);
+ descriptor.set_configurable(true);
+ v8::Local<v8::String> consoleKey = toV8StringInternalized(isolate, "console");
+ if (!global->DefineProperty(info.context, consoleKey, descriptor)
.FromMaybe(false))
return;
m_console.Reset(isolate, console);
« no previous file with comments | « no previous file | test/inspector/console/console-follow-spec.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698