This patch combine three patch which is related to "--gcov" flag.
[platform/framework/web/chromium-efl.git] / gin / runner.cc
1 // Copyright 2013 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "gin/runner.h"
6
7 namespace gin {
8
9 Runner::Runner() {}
10
11 Runner::~Runner() = default;
12
13 Runner::Scope::Scope(Runner* runner)
14     : isolate_scope_(runner->GetContextHolder()->isolate()),
15       handle_scope_(runner->GetContextHolder()->isolate()),
16       scope_(runner->GetContextHolder()->context()) {
17 }
18
19 Runner::Scope::~Scope() = default;
20
21 }  // namespace gin