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

Unified Diff: src/d8.cc

Issue 1527103005: [d8] Remove "os" object from d8. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 | « src/d8.h ('k') | src/d8.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.cc
diff --git a/src/d8.cc b/src/d8.cc
index 7b4d2746d7de9a27b9e961ac71d1a57b8282f1e7..84b402f7c90a369110fc98cff69b1beef2501348 100644
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -1211,13 +1211,6 @@ Local<ObjectTemplate> Shell::CreateGlobalTemplate(Isolate* isolate) {
worker_fun_template);
#endif // !V8_SHARED
- Local<ObjectTemplate> os_templ = ObjectTemplate::New(isolate);
- AddOSMethods(isolate, os_templ);
- global_template->Set(
- String::NewFromUtf8(isolate, "os", NewStringType::kNormal)
- .ToLocalChecked(),
- os_templ);
-
return global_template;
}
« no previous file with comments | « src/d8.h ('k') | src/d8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698