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

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

Issue 2428473003: [inspector] align console implementation with spec (Closed)
Patch Set: 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 | « 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 39ddf29e1da4003501742cfb228db7098e418e04..ef0bfa91d2bbca1ba13b72ca8ac99fc74346e09d 100644
--- a/src/inspector/inspected-context.cc
+++ b/src/inspector/inspected-context.cc
@@ -48,9 +48,13 @@ InspectedContext::InspectedContext(V8InspectorImpl* inspector,
v8::Local<v8::Object> global = info.context->Global();
v8::Local<v8::Object> console =
V8Console::createConsole(this, info.hasMemoryOnConsole);
+ v8::PropertyDescriptor descriptor(console, /* writable */ true);
+ descriptor.set_enumerable(false);
+ descriptor.set_configurable(true);
if (!global
- ->Set(info.context, toV8StringInternalized(isolate, "console"),
- console)
+ ->DefineProperty(info.context,
dgozman 2016/10/19 00:19:53 What is this formatting?
kozy 2016/10/19 00:54:36 Done.
+ toV8StringInternalized(isolate, "console"),
+ 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