Fix invalid licenses
[platform/framework/web/crosswalk-tizen.git] / src / common / constants.cc
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16
17 #include "common/constants.h"
18
19 namespace wrt {
20
21 // Extension
22 const char kSwitchExtensionServer[] = "extension-server";
23
24 // DBus for Application
25 const char kDBusNameForApplication[] = "Application";
26 const char kDBusInterfaceNameForApplication[] = "org.tizen.wrt.Application";
27 const char kMethodNotifyEPCreated[] = "NotifyEPCreated";
28 const char kMethodGetRuntimeVariable[] = "GetRuntimeVariable";
29
30 // DBus for Extension
31 const char kDBusNameForExtension[] = "Extension";
32 const char kDBusInterfaceNameForExtension[] = "org.tizen.wrt.Extension";
33 const char kMethodGetExtensions[] = "GetExtensions";
34 const char kMethodCreateInstance[] = "CreateInstance";
35 const char kMethodDestroyInstance[] = "DestroyInstance";
36 const char kMethodSendSyncMessage[] = "SendSyncMessage";
37 const char kMethodPostMessage[] = "PostMessage";
38 const char kSignalOnMessageToJS[] = "OnMessageToJS";
39
40
41
42
43 }  // namespace wrt