diff options
author | 2017-03-31 16:30:42 -0700 | |
---|---|---|
committer | 2017-04-06 11:42:52 -0700 | |
commit | 27c8115510cebda13cbe24fd4caa946ea9c5003c (patch) | |
tree | 1f905493d9c2122f921ee78b3c18b24e70222b79 /services/surfaceflinger/EventThread.cpp | |
parent | 1e438d2c9ce366ef98452ed6e50699196433bf2c (diff) |
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
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; } |