commit | fb6f10ac2bc61c43c1cd6d753818719d95e73c54 | [log] [tgz] |
---|---|---|
author | kalman <[email protected]> | Thu Nov 06 23:55:35 2014 |
committer | Commit bot <[email protected]> | Thu Nov 06 23:56:46 2014 |
tree | 6e08679d5cdf367038a9ece25126baea19d13ed3 | |
parent | 2f8c0b4bdc22b28cdbea1b2bb7e76514283c5d42 [diff] [blame] |
Use the v8::Isolate we know about rather than v8::Isolate::GetCurrent() in a few places in the extensions code. BUG=359442 [email protected] Review URL: https://codereview.chromium.org/703173003 Cr-Commit-Position: refs/heads/master@{#303127}
diff --git a/extensions/renderer/console.h b/extensions/renderer/console.h index 847c54b..c48cf7990 100644 --- a/extensions/renderer/console.h +++ b/extensions/renderer/console.h
@@ -49,7 +49,7 @@ // bound to respective debug/log/warn/error methods. This is a direct drop-in // replacement for the standard devtools console.* methods usually accessible // from JS. -v8::Local<v8::Object> AsV8Object(); +v8::Local<v8::Object> AsV8Object(v8::Isolate* isolate); } // namespace console