Override content::CreateInProcessGpuThread for EFL port.
authorAntonio Gomes <a1.gomes@samsung.com>
Wed, 22 Apr 2015 15:57:40 +0000 (08:57 -0700)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
commitaeed890975a6df4a73fd7f1b960ef4eb27d111ff
treee567afa2b45c0942f6c832d5d0b7490df60bc17d
parentdc44c3e1bdde0becc61eea45761d79e63464d10a
Override content::CreateInProcessGpuThread for EFL port.

Patch makes use of the same override technique used by
RenderThemeChromiumDefault to override the theme method.

Basically, we "redefined" the method we want to override
and include the original source file containing its definition
(.cc or .cpp). Additionally, we exclude the original
implementation file from the build (in GYP).
Then we can have our own implementation of this method
from our efl specific method.

Together with: Iac24e6d38174d7dc8f0d1bb1c37bc8dac05d83c5

Change-Id: Ib7c2aeedbf76de576a25ad95d5437919fec09d3c
Signed-off-by: Antonio Gomes <a1.gomes@samsung.com>
tizen_src/chromium_impl/content/content_efl.gypi
tizen_src/chromium_impl/content/gpu/gpu_thread_override_efl.cc
tizen_src/chromium_impl/content/gpu/in_process_gpu_thread_efl.cc [new file with mode: 0644]