• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2015 The Chromium Embedded Framework 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 CEF_LIBCEF_RENDERER_EXTENSIONS_EXTENSIONS_DISPATCHER_DELEGATE_H_
6 #define CEF_LIBCEF_RENDERER_EXTENSIONS_EXTENSIONS_DISPATCHER_DELEGATE_H_
7 
8 #include "base/macros.h"
9 #include "extensions/renderer/dispatcher_delegate.h"
10 
11 namespace extensions {
12 
13 class CefExtensionsDispatcherDelegate : public DispatcherDelegate {
14  public:
15   CefExtensionsDispatcherDelegate();
16   ~CefExtensionsDispatcherDelegate() override;
17 
18   void PopulateSourceMap(
19       extensions::ResourceBundleSourceMap* source_map) override;
20 
21  private:
22   DISALLOW_COPY_AND_ASSIGN(CefExtensionsDispatcherDelegate);
23 };
24 
25 }  // namespace extensions
26 
27 #endif  // CEF_LIBCEF_RENDERER_EXTENSIONS_EXTENSIONS_DISPATCHER_DELEGATE_H_
28