- add sources.
[platform/framework/web/crosswalk.git] / src / ozone / patches / 0004-Fix-component-shared_library-build-for-Ozone-Wayland.patch
1 From 7cdbfc4c9be4c85ed55b847f00e01d87ea60116c Mon Sep 17 00:00:00 2001
2 From: Kondapally Kalyan <kalyan.kondapally@intel.com>
3 Date: Mon, 25 Nov 2013 12:16:47 +0200
4 Subject: [PATCH] Fix component=shared_library build for Ozone-Wayland.
5
6 This patch exports needed symbols in GPUProcessHost used by
7 Ozone-Wayland. We would need to investigate if this change can
8 be avoided.
9 ---
10  content/browser/gpu/gpu_process_host.h |    2 +-
11  1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h
14 index 32345b7..2b65432 100644
15 --- a/content/browser/gpu/gpu_process_host.h
16 +++ b/content/browser/gpu/gpu_process_host.h
17 @@ -96,7 +96,7 @@ class GpuProcessHost : public BrowserChildProcessHostDelegate,
18    virtual bool Send(IPC::Message* msg) OVERRIDE;
19
20    // Adds a message filter to the GpuProcessHost's channel.
21 -  void AddFilter(IPC::ChannelProxy::MessageFilter* filter);
22 +  CONTENT_EXPORT void AddFilter(IPC::ChannelProxy::MessageFilter* filter);
23
24    // Tells the GPU process to create a new channel for communication with a
25    // client. Once the GPU process responds asynchronously with the IPC handle
26 --
27 1.7.9.5