2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include <dpl/log/log.h>
20 #include <Commons/plugin_initializer_def.h>
21 #include <Commons/WrtWrapper/WrtWrappersMgr.h>
22 #include <Commons/Exception.h>
23 #include "JSMediacontentManager.h"
26 using namespace TizenApis::Api::Mediacontent;
27 using namespace WrtDeviceApis::Commons;
28 using namespace WrtDeviceApis::CommonsJavaScript;
32 namespace Mediacontent {
34 void on_widget_start_callback(
36 JavaScriptContext context,
37 const engine_interface_t *interface)
39 LogDebug("[Tizen\\mediacontent] on_widget_start_callback (" << widgetId << ")");
43 WrtWrappersMgr::getInstance().registerWrapper(widgetId, context,interface);
47 LogError("Wrt wrapper registration failed");
52 void on_widget_stop_callback(int widgetId)
54 LogDebug("[Tizen\\mediacontent] on_widget_stop_callback (" << widgetId << ")");
55 WrtWrappersMgr::getInstance().removeWrapper(widgetId);
58 PLUGIN_ON_WIDGET_START(on_widget_start_callback)
59 PLUGIN_ON_WIDGET_STOP(on_widget_stop_callback)
61 PLUGIN_CLASS_MAP_BEGIN
62 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
64 JSMediacontentManager::getClassRef(),