summaryrefslogtreecommitdiff
path: root/chromium/ipc/ipc_channel.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-05-03 13:42:47 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-05-15 10:27:51 +0000
commit8c5c43c7b138c9b4b0bf56d946e61d3bbc111bec (patch)
treed29d987c4d7b173cf853279b79a51598f104b403 /chromium/ipc/ipc_channel.h
parent830c9e163d31a9180fadca926b3e1d7dfffb5021 (diff)
downloadqtwebengine-chromium-8c5c43c7b138c9b4b0bf56d946e61d3bbc111bec.tar.gz
BASELINE: Update Chromium to 66.0.3359.156
Change-Id: I0c9831ad39911a086b6377b16f995ad75a51e441 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'chromium/ipc/ipc_channel.h')
-rw-r--r--chromium/ipc/ipc_channel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/ipc/ipc_channel.h b/chromium/ipc/ipc_channel.h
index ec7b7c963c6..5b0221cb57b 100644
--- a/chromium/ipc/ipc_channel.h
+++ b/chromium/ipc/ipc_channel.h
@@ -12,6 +12,7 @@
#include <string>
#include "base/compiler_specific.h"
+#include "base/component_export.h"
#include "base/files/scoped_file.h"
#include "base/memory/ref_counted.h"
#include "base/process/process.h"
@@ -43,7 +44,7 @@ class Listener;
// Channels are implemented using mojo message pipes on all platforms other
// than NaCl.
-class IPC_EXPORT Channel : public Sender {
+class COMPONENT_EXPORT(IPC) Channel : public Sender {
// Security tests need access to the pipe handle.
friend class ChannelTest;
@@ -84,7 +85,7 @@ class IPC_EXPORT Channel : public Sender {
// Helper interface a Channel may implement to expose support for associated
// Mojo interfaces.
- class IPC_EXPORT AssociatedInterfaceSupport {
+ class COMPONENT_EXPORT(IPC) AssociatedInterfaceSupport {
public:
using GenericAssociatedInterfaceFactory =
base::Callback<void(mojo::ScopedInterfaceEndpointHandle)>;