summaryrefslogtreecommitdiffstats
path: root/common/observers/HotplugEventObserver.h
diff options
context:
space:
mode:
authorAndy Qiu <junhai.qiu@intel.com>2013-04-05 17:41:58 -0700
committerbuildbot <buildbot@intel.com>2013-04-14 05:44:35 -0700
commit8a427146c6f68f9add960bbd18c4f84c9eeee4a5 (patch)
tree2ea0c9ae59db6c1194d95b25dfc73eec5b44fb22 /common/observers/HotplugEventObserver.h
parente8344084d2e34c2bbd8cf465704a752b7499e047 (diff)
downloadandroid_hardware_intel_img_hwcomposer-8a427146c6f68f9add960bbd18c4f84c9eeee4a5.tar.gz
android_hardware_intel_img_hwcomposer-8a427146c6f68f9add960bbd18c4f84c9eeee4a5.tar.bz2
android_hardware_intel_img_hwcomposer-8a427146c6f68f9add960bbd18c4f84c9eeee4a5.zip
Support HWC 1.2 interface.
BZ:99151 This change supports HWC 1.2 interface. The version number needs to be upgraded to 1.2 once Widi implementation is ready. Change-Id: Icb616181811190956251628c7ba70a6c8b7962a8 Signed-off-by: Andy Qiu <junhai.qiu@intel.com> Reviewed-on: http://android.intel.com:8080/100276 Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'common/observers/HotplugEventObserver.h')
-rw-r--r--common/observers/HotplugEventObserver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/observers/HotplugEventObserver.h b/common/observers/HotplugEventObserver.h
index e1c891b..eab3623 100644
--- a/common/observers/HotplugEventObserver.h
+++ b/common/observers/HotplugEventObserver.h
@@ -34,19 +34,19 @@
namespace android {
namespace intel {
-class DisplayDevice;
+class ExternalDevice;
class HotplugEventObserver : public Thread
{
public:
- HotplugEventObserver(DisplayDevice& disp, IHotplugControl& hotplug);
+ HotplugEventObserver(ExternalDevice& disp, IHotplugControl& hotplug);
virtual ~HotplugEventObserver();
private:
virtual bool threadLoop();
virtual android::status_t readyToRun();
virtual void onFirstRef();
private:
- DisplayDevice& mDisplayDevice;
+ ExternalDevice& mDisplayDevice;
IHotplugControl& mHotplug;
}; // HotplugEventObserver
}