From: j-hyun.lee Date: Fri, 15 Jan 2016 05:25:00 +0000 (+0900) Subject: fixup! [M47_2526] Chromium upversion to m47_2526 branch X-Git-Tag: submit/tizen/20201118.160233~355 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f9e2ca2359ea14b1c8a86a4014c645a41ae82ec;p=platform%2Fframework%2Fweb%2Fchromium-efl.git fixup! [M47_2526] Chromium upversion to m47_2526 branch Fix compiler warning in plugin_placeholder_efl.cc blink::WebPlugin* PluginPlaceholderEfl::CreatePlugin() was not returning anything. Set return value as nullptr. Bug: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=15544 Reviewed by: sns.park Change-Id: Ic8c9e5570686a3f8f6549fdbd3e07b24460beb93 Signed-off-by: j-hyun.lee --- diff --git a/tizen_src/ewk/efl_integration/renderer/plugins/plugin_placeholder_efl.cc b/tizen_src/ewk/efl_integration/renderer/plugins/plugin_placeholder_efl.cc index e504c50..dd19325 100644 --- a/tizen_src/ewk/efl_integration/renderer/plugins/plugin_placeholder_efl.cc +++ b/tizen_src/ewk/efl_integration/renderer/plugins/plugin_placeholder_efl.cc @@ -37,6 +37,8 @@ PluginPlaceholderEfl* PluginPlaceholderEfl::CreateMissingPlugin( } blink::WebPlugin* PluginPlaceholderEfl::CreatePlugin() { + NOTIMPLEMENTED(); + return nullptr; } v8::Local PluginPlaceholderEfl::GetV8Handle(v8::Isolate* isolate) {