[M76 Migration] Remove EWK_BRINGUP in client_native_pixmap_factory_efl.cc 60/222060/2
authorChandan Padhi <c.padhi@samsung.com>
Wed, 11 Dec 2019 10:29:06 +0000 (15:59 +0530)
committerDae-Hyun Ko <dhyuna.ko@samsung.com>
Fri, 10 Jan 2020 01:21:30 +0000 (01:21 +0000)
Reference: https://review.tizen.org/gerrit/#/c/200795/

Change-Id: Icf7bc9d89650fa842331a15828a0b2acddf03f03
Signed-off-by: Chandan Padhi <c.padhi@samsung.com>
(cherry picked from commit 4c0b4519a409ef83204cd5803176d609d316823d)
(cherry picked from commit 449ee01c7ee49893b6b79a67bc719d3396c7f425)

tizen_src/chromium_impl/ui/ozone/client_native_pixmap_factory_efl.cc
tizen_src/chromium_impl/ui/ozone/client_native_pixmap_factory_efl.h

index f7c3262..246a1b1 100644 (file)
@@ -9,13 +9,7 @@
 namespace ui {
 
 gfx::ClientNativePixmapFactory* CreateClientNativePixmapFactoryEfl() {
-  //#if !defined(EWK_BRINGUP)  // FIXME: m67 bringup
-  // [m63_3239]
-  // error: cannot convert ‘gfx::ClientNativePixmapFactory*’ to
-  // ‘ui::ClientNativePixmapFactory*
   return CreateStubClientNativePixmapFactory();
-  //#endif
 }
 
 }  // namespace ui
-
index 39b2570..82da9e4 100644 (file)
@@ -2,17 +2,18 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#ifndef OZONE_PIXMAP_FACTORY_EFL_H_
-#define OZONE_PIXMAP_FACTORY_EFL_H_
+#ifndef UI_OZONE_CLIENT_NATIVE_PIXMAP_FACTORY_EFL_H_
+#define UI_OZONE_CLIENT_NATIVE_PIXMAP_FACTORY_EFL_H_
 
 namespace gfx {
-
 class ClientNativePixmapFactory;
+}
 
-// Constructor hook for use in constructor_list.cc
-ClientNativePixmapFactory* CreateClientNativePixmapFactoryEfl();
+namespace ui {
 
-}  // namespace gfx
+// Constructor hook for use in constructor_list.cc
+gfx::ClientNativePixmapFactory* CreateClientNativePixmapFactoryEfl();
 
-#endif  // OZONE_PIXMAP_FACTORY_EFL_H_
+}  // namespace ui
 
+#endif  // UI_OZONE_CLIENT_NATIVE_PIXMAP_FACTORY_EFL_H_