summaryrefslogtreecommitdiff
path: root/xwalk/vehicle_extension.h
blob: ebd5081104eaa1430829278b6a2395d18b5bb769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2014 Intel Corporation. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef VEHICLE_VEHICLE_EXTENSION_H_
#define VEHICLE_VEHICLE_EXTENSION_H_

#include "common/extension.h"

class VehicleExtension : public common::Extension {
 public:
  VehicleExtension();
  virtual ~VehicleExtension();

 private:
  // common::Extension implementation.
  virtual common::Instance* CreateInstance();
};

#endif  // VEHICLE_VEHICLE_EXTENSION_H_