summaryrefslogtreecommitdiffstats
path: root/gin
diff options
context:
space:
mode:
authorjochen <jochen@chromium.org>2015-12-18 02:42:33 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-18 10:43:41 +0000
commit3d8162c61bf5be0b8899283ae2977554ae140d94 (patch)
tree727341c60257624983e20b3a164982db3933e301 /gin
parent3734f885cab7c2f839fd2a362bf796abfd70f2be (diff)
downloadchromium_src-3d8162c61bf5be0b8899283ae2977554ae140d94.zip
chromium_src-3d8162c61bf5be0b8899283ae2977554ae140d94.tar.gz
chromium_src-3d8162c61bf5be0b8899283ae2977554ae140d94.tar.bz2
Remove calls to deprecated methods on v8::V8
BUG=none R=haraken@chromium.org Review URL: https://codereview.chromium.org/1531223003 Cr-Commit-Position: refs/heads/master@{#366073}
Diffstat (limited to 'gin')
-rw-r--r--gin/test/file_runner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gin/test/file_runner.cc b/gin/test/file_runner.cc
index 304ddef..80b556e 100644
--- a/gin/test/file_runner.cc
+++ b/gin/test/file_runner.cc
@@ -72,7 +72,7 @@ void RunTestFromFile(const base::FilePath& path, FileRunnerDelegate* delegate,
gin::ShellRunner runner(delegate, instance.isolate());
{
gin::Runner::Scope scope(&runner);
- v8::V8::SetCaptureStackTraceForUncaughtExceptions(true);
+ instance.isolate()->SetCaptureStackTraceForUncaughtExceptions(true);
runner.Run(source, path.AsUTF8Unsafe());
if (run_until_idle) {