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

Unified Diff: extensions/renderer/v8_context_native_handler.cc

Issue 1192763002: extensions: Use V8 Maybe APIs in NativeHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « extensions/renderer/utils_native_handler.cc ('k') | extensions/renderer/v8_helpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/v8_context_native_handler.cc
diff --git a/extensions/renderer/v8_context_native_handler.cc b/extensions/renderer/v8_context_native_handler.cc
index 6fbc8b246b37e16cfd3382bcdc24ec1f0169be5c..ed915cc423f717a1a5fb6ce04b96947e613db787 100644
--- a/extensions/renderer/v8_context_native_handler.cc
+++ b/extensions/renderer/v8_context_native_handler.cc
@@ -61,7 +61,7 @@ void V8ContextNativeHandler::RunWithNativesEnabledModuleSystem(
CHECK_EQ(args.Length(), 1);
CHECK(args[0]->IsFunction());
v8::Local<v8::Value> call_with_args[] = {
- context()->module_system()->NewInstance()};
+ context()->module_system()->NewInstance()};
ModuleSystem::NativesEnabledScope natives_enabled(context()->module_system());
context()->CallFunction(v8::Local<v8::Function>::Cast(args[0]), 1,
call_with_args);
« no previous file with comments | « extensions/renderer/utils_native_handler.cc ('k') | extensions/renderer/v8_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698