Upstream version 8.36.161.0
[platform/framework/web/crosswalk.git] / src / xwalk / application / common / installer / wgt_package.h
1 // Copyright (c) 2013 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_APPLICATION_COMMON_INSTALLER_WGT_PACKAGE_H_
6 #define XWALK_APPLICATION_COMMON_INSTALLER_WGT_PACKAGE_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/files/file_path.h"
12 #include "base/memory/scoped_handle.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "xwalk/application/common/installer/package.h"
15
16 namespace xwalk {
17 namespace application {
18
19 class WGTPackage : public Package {
20  public:
21   explicit WGTPackage(const base::FilePath& path);
22   virtual ~WGTPackage();
23 };
24
25 }  // namespace application
26 }  // namespace xwalk
27
28 #endif  // XWALK_APPLICATION_COMMON_INSTALLER_WGT_PACKAGE_H_