summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_channel_factory.cc')
-rw-r--r--ipc/ipc_channel_factory.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_factory.cc b/ipc/ipc_channel_factory.cc
index 4cb1790..f553203 100644
--- a/ipc/ipc_channel_factory.cc
+++ b/ipc/ipc_channel_factory.cc
@@ -15,12 +15,12 @@ class PlatformChannelFactory : public ChannelFactory {
: handle_(handle), mode_(mode) {
}
- virtual std::string GetName() const OVERRIDE {
+ virtual std::string GetName() const override {
return handle_.name;
}
virtual scoped_ptr<Channel> BuildChannel(
- Listener* listener) OVERRIDE {
+ Listener* listener) override {
return Channel::Create(handle_, mode_, listener);
}