Merge "Revert "[secureelement] - Checking privileges moved to JS layer"" into tizen_3.0
[platform/core/api/webapi-plugins.git] / src / sound / sound_extension.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 "sound/sound_extension.h"
18
19 #include "sound/sound_instance.h"
20
21 // This will be generated from sound_api.js
22 extern const char kSource_sound_api[];
23
24 common::Extension* CreateExtension() {
25   return new SoundExtension;
26 }
27
28 SoundExtension::SoundExtension() {
29   SetExtensionName("tizen.sound");
30   SetJavaScriptAPI(kSource_sound_api);
31 }
32
33 SoundExtension::~SoundExtension() {}
34
35 common::Instance* SoundExtension::CreateInstance() {
36   return new extension::sound::SoundInstance();
37 }