fixup! [M47_2526] Chromium upversion to m47_2526 branch
authorj-hyun.lee <j-hyun.lee@samsung.com>
Fri, 15 Jan 2016 05:25:00 +0000 (14:25 +0900)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 07:55:23 +0000 (07:55 +0000)
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 <j-hyun.lee@samsung.com>
tizen_src/ewk/efl_integration/renderer/plugins/plugin_placeholder_efl.cc

index e504c50..dd19325 100644 (file)
@@ -37,6 +37,8 @@ PluginPlaceholderEfl* PluginPlaceholderEfl::CreateMissingPlugin(
 }
 
 blink::WebPlugin* PluginPlaceholderEfl::CreatePlugin() {
+  NOTIMPLEMENTED();
+  return nullptr;
 }
 
 v8::Local<v8::Value> PluginPlaceholderEfl::GetV8Handle(v8::Isolate* isolate) {