Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / renderer / default_dispatcher_delegate.h
1 // Copyright 2014 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 #ifndef EXTENSIONS_RENDERER_DEFAULT_DISPATCHER_DELEGATE_H_
6 #define EXTENSIONS_RENDERER_DEFAULT_DISPATCHER_DELEGATE_H_
7
8 #include "extensions/renderer/dispatcher_delegate.h"
9
10 namespace extensions {
11
12 class DefaultDispatcherDelegate : public DispatcherDelegate {
13  public:
14   DefaultDispatcherDelegate();
15   ~DefaultDispatcherDelegate() override;
16
17   // DispatcherDelegate implementation.
18   scoped_ptr<ScriptContext> CreateScriptContext(
19       const v8::Handle<v8::Context>& v8_context,
20       blink::WebFrame* frame,
21       const Extension* extension,
22       Feature::Context context_type,
23       const Extension* effective_extension,
24       Feature::Context effective_context_type) override;
25 };
26
27 }  // namespace extensions
28
29 #endif  // EXTENSIONS_RENDERER_DEFAULT_DISPATCHER_DELEGATE_H_