Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / renderer / extensions / chrome_v8_context.cc
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
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 "chrome/renderer/extensions/chrome_v8_context.h"
6
7 namespace extensions {
8
9 ChromeV8Context::ChromeV8Context(const v8::Handle<v8::Context>& v8_context,
10                                  blink::WebFrame* web_frame,
11                                  const Extension* extension,
12                                  Feature::Context context_type)
13     : ScriptContext(v8_context, web_frame, extension, context_type) {
14 }
15
16 }  // namespace extensions