Fix invalid licenses
[platform/framework/web/crosswalk-tizen.git] / src / runtime / popup_string.h
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
18 #ifndef WRT_RUNTIME_POPUP_STRING_H_
19 #define WRT_RUNTIME_POPUP_STRING_H_
20
21 #include <string>
22
23 namespace wrt {
24
25 namespace popup_string {
26
27 extern const char kTextDomainWrt[];
28
29 extern const char kPopupTitleAuthRequest[];
30 extern const char kPopupTitleCert[];
31 extern const char kPopupTitleGeoLocation[];
32 extern const char kPopupTitleUserMedia[];
33 extern const char kPopupTitleWebNotification[];
34 extern const char kPopupTitleWebStorage[];
35
36 extern const char kPopupBodyAuthRequest[];
37 extern const char kPopupBodyCert[];
38 extern const char kPopupBodyGeoLocation[];
39 extern const char kPopupBodyUserMedia[];
40 extern const char kPopupBodyWebNotification[];
41 extern const char kPopupBodyWebStorage[];
42
43 extern const char kPopupCheckRememberPreference[];
44
45 extern const char kPopupLabelAuthusername[];
46 extern const char kPopupLabelPassword[];
47
48 extern const char kPopupButtonOk[];
49 extern const char kPopupButtonLogin[];
50 extern const char kPopupButtonCancel[];
51 extern const char kPopupButtonAllow[];
52 extern const char kPopupButtonDeny[];
53
54 std::string GetText(const std::string& msg_id);
55
56 }  // namespace popup_string
57
58 }  // namespace wrt
59
60 #endif  // WRT_RUNTIME_POPUP_STRING_H_