summaryrefslogtreecommitdiffstats
path: root/common/observers/HotplugEventObserver.h
diff options
context:
space:
mode:
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 38db6f7..e1c891b 100644
--- a/common/observers/HotplugEventObserver.h
+++ b/common/observers/HotplugEventObserver.h
@@ -29,7 +29,7 @@
#define HOTPLUGEVENTOBSERVER_H_
#include <utils/threads.h>
-#include <HotplugControl.h>
+#include <IHotplugControl.h>
namespace android {
namespace intel {
@@ -39,7 +39,7 @@ class DisplayDevice;
class HotplugEventObserver : public Thread
{
public:
- HotplugEventObserver(DisplayDevice& disp, HotplugControl& hotplug);
+ HotplugEventObserver(DisplayDevice& disp, IHotplugControl& hotplug);
virtual ~HotplugEventObserver();
private:
virtual bool threadLoop();
@@ -47,7 +47,7 @@ private:
virtual void onFirstRef();
private:
DisplayDevice& mDisplayDevice;
- HotplugControl& mHotplug;
+ IHotplugControl& mHotplug;
}; // HotplugEventObserver
}
}