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.h | |
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.h')
-rw-r--r-- | services/surfaceflinger/EventThread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/surfaceflinger/EventThread.h b/services/surfaceflinger/EventThread.h index c0b5532562..3e057493dd 100644 --- a/services/surfaceflinger/EventThread.h +++ b/services/surfaceflinger/EventThread.h @@ -68,11 +68,11 @@ class EventThread : public Thread, private VSyncSource::Callback { private: virtual ~Connection(); virtual void onFirstRef(); - status_t getDataChannel(sp<BitTube>* outChannel) const override; + status_t getDataChannel(sp<gui::BitTube>* outChannel) const override; status_t setVsyncRate(uint32_t count) override; void requestNextVsync() override; // asynchronous sp<EventThread> const mEventThread; - sp<BitTube> const mChannel; + sp<gui::BitTube> const mChannel; }; public: |