Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / browser / storage_component.h
1 // Copyright (c) 2014 Intel Corporation. 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 XWALK_RUNTIME_BROWSER_STORAGE_COMPONENT_H_
6 #define XWALK_RUNTIME_BROWSER_STORAGE_COMPONENT_H_
7
8 #include "xwalk/runtime/browser/xwalk_component.h"
9 #include "xwalk/experimental/native_file_system/native_file_system_extension.h"
10
11 namespace xwalk {
12
13 class StorageComponent : public XWalkComponent {
14  public:
15   StorageComponent();
16   virtual ~StorageComponent();
17
18  private:
19   // XWalkComponent implementation.
20   void CreateExtensionThreadExtensions(
21       content::RenderProcessHost* host,
22       extensions::XWalkExtensionVector* extensions) override;
23
24   experimental::NativeFileSystemExtension* native_file_system_extension_;
25 };
26
27 }  // namespace xwalk
28
29 #endif  // XWALK_RUNTIME_BROWSER_STORAGE_COMPONENT_H_