From 27c8115510cebda13cbe24fd4caa946ea9c5003c Mon Sep 17 00:00:00 2001 From: Dan Stoza Date: Fri, 31 Mar 2017 16:30:42 -0700 Subject: libgui: Format BitTube and move into gui namespace Reformats BitTube using the framework default .clang-format and moves it into the android::gui namespace. Test: m -j + manual testing Change-Id: I5ea748b809f37c2ec4dcfb41e7b84daf7a084368 --- services/surfaceflinger/EventThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'services/surfaceflinger/EventThread.cpp') diff --git a/services/surfaceflinger/EventThread.cpp b/services/surfaceflinger/EventThread.cpp index 463e60c08b..7e0506b00e 100644 --- a/services/surfaceflinger/EventThread.cpp +++ b/services/surfaceflinger/EventThread.cpp @@ -389,7 +389,7 @@ void EventThread::dump(String8& result) const { EventThread::Connection::Connection( const sp& eventThread) - : count(-1), mEventThread(eventThread), mChannel(new BitTube()) + : count(-1), mEventThread(eventThread), mChannel(new gui::BitTube()) { } @@ -403,7 +403,7 @@ void EventThread::Connection::onFirstRef() { mEventThread->registerDisplayEventConnection(this); } -status_t EventThread::Connection::getDataChannel(sp* outChannel) const { +status_t EventThread::Connection::getDataChannel(sp* outChannel) const { *outChannel = mChannel; return NO_ERROR; } -- cgit v1.2.3-59-g8ed1b