4d35be810f5da2224448058e753afbe6e8eadae6
[platform/framework/web/crosswalk-tizen.git] / src / common / constants.cc
1 // Copyright 2015 Samsung Electronics Co, Ltd. 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 #include "common/constants.h"
6
7 namespace wrt {
8
9 // Extension
10 const char kSwitchExtensionServer[] = "extension-server";
11
12 // DBus for Application
13 const char kDBusNameForApplication[] = "Application";
14 const char kDBusInterfaceNameForApplication[] = "org.tizen.wrt.Application";
15 const char kMethodNotifyEPCreated[] = "NotifyEPCreated";
16 const char kMethodGetRuntimeVariable[] = "GetRuntimeVariable";
17
18 // DBus for Extension
19 const char kDBusNameForExtension[] = "Extension";
20 const char kDBusInterfaceNameForExtension[] = "org.tizen.wrt.Extension";
21 const char kMethodGetExtensions[] = "GetExtensions";
22 const char kMethodCreateInstance[] = "CreateInstance";
23 const char kMethodDestroyInstance[] = "DestroyInstance";
24 const char kMethodSendSyncMessage[] = "SendSyncMessage";
25 const char kMethodPostMessage[] = "PostMessage";
26 const char kSignalOnMessageToJS[] = "OnMessageToJS";
27
28
29
30
31 }  // namespace wrt