diff options
Diffstat (limited to 'services/surfaceflinger/EventThread.cpp')
-rw-r--r-- | services/surfaceflinger/EventThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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>& 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<BitTube>* outChannel) const { +status_t EventThread::Connection::getDataChannel(sp<gui::BitTube>* outChannel) const { *outChannel = mChannel; return NO_ERROR; } |