Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / browser / guest_view / guest_view_manager_factory.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_BROWSER_GUEST_VIEW_GUEST_VIEW_MANAGER_FACTORY_H_
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_MANAGER_FACTORY_H_
7
8 namespace content {
9 class BrowserContext;
10 }
11
12 namespace extensions {
13
14 class GuestViewManager;
15
16 class GuestViewManagerFactory {
17  public:
18   virtual GuestViewManager* CreateGuestViewManager(
19       content::BrowserContext* context) = 0;
20
21  protected:
22   virtual ~GuestViewManagerFactory() {}
23 };
24
25 }  // namespace extensions
26
27 #endif  // EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_MANAGER_FACTORY_H_
28