X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fremoting%2Fhost%2Flinux%2Fx_server_clipboard_unittest.cc;h=ea8ae5a8fb66fec9350a435904943fa3c1409c32;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=beb7f61f2c5a32c45f04d83a51e523ded28503d9;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/remoting/host/linux/x_server_clipboard_unittest.cc b/src/remoting/host/linux/x_server_clipboard_unittest.cc index beb7f61..ea8ae5a 100644 --- a/src/remoting/host/linux/x_server_clipboard_unittest.cc +++ b/src/remoting/host/linux/x_server_clipboard_unittest.cc @@ -5,6 +5,7 @@ #include #include "base/basictypes.h" +#include "base/bind.h" #include "remoting/base/constants.h" #include "testing/gtest/include/gtest/gtest.h" @@ -67,7 +68,7 @@ class ClipboardTestClient { class XServerClipboardTest : public testing::Test { public: - virtual void SetUp() OVERRIDE { + void SetUp() override { // XSynchronize() ensures that PumpXEvents() fully processes all X server // requests and responses before returning to the caller. Display* display1 = XOpenDisplay(NULL); @@ -78,7 +79,7 @@ class XServerClipboardTest : public testing::Test { client2_.Init(display2); } - virtual void TearDown() OVERRIDE { + void TearDown() override { XCloseDisplay(client1_.display()); XCloseDisplay(client2_.display()); }