summaryrefslogtreecommitdiffstats
path: root/mojo/apps/js/bindings/core.h
blob: 0b5f02ed0c4efd23f0a012a9fb6721ec74aee1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_APPS_JS_BINDINGS_CORE_H_
#define MOJO_APPS_JS_BINDINGS_CORE_H_

#include "v8/include/v8.h"

namespace mojo {
namespace js {

class Core {
 public:
  static const char kModuleName[];
  static v8::Local<v8::ObjectTemplate> GetTemplate(v8::Isolate* isolate);
};

}  // namespace js
}  // namespace mojo

#endif  // MOJO_APPS_JS_BINDINGS_CORE_H_