Index: chromeos/display/real_output_configurator_delegate.h |
diff --git a/chromeos/display/real_output_configurator_delegate.h b/chromeos/display/real_output_configurator_delegate.h |
index 66edfda45d1d2f95982ecb7ce635dc70b6dcf60f..13562cd38598c7f825af95d739f25beb6a8c089a 100644 |
--- a/chromeos/display/real_output_configurator_delegate.h |
+++ b/chromeos/display/real_output_configurator_delegate.h |
@@ -5,6 +5,7 @@ |
#ifndef CHROMEOS_DISPLAY_REAL_OUTPUT_CONFIGURATOR_DELEGATE_H_ |
#define CHROMEOS_DISPLAY_REAL_OUTPUT_CONFIGURATOR_DELEGATE_H_ |
+#include <map> |
Daniel Erat
2013/09/23 19:31:43
nit: i don't think you need this here anymore
kcwu
2013/09/24 13:55:06
Done.
|
#include <vector> |
#include "base/basictypes.h" |
@@ -53,6 +54,12 @@ class RealOutputConfiguratorDelegate : public OutputConfigurator::Delegate { |
const OutputConfigurator::CoordinateTransformation& ctm) OVERRIDE; |
virtual void SendProjectingStateToPowerManager(bool projecting) OVERRIDE; |
+ // Gets HDCP state of output. |
Daniel Erat
2013/09/23 19:31:43
nit: get rid of comments and squash these up again
kcwu
2013/09/24 13:55:06
Done.
|
+ virtual bool GetHDCPState(RROutput id, HDCPState* state) OVERRIDE; |
+ |
+ // Sets HDCP state of output. |
+ virtual bool SetHDCPState(RROutput id, HDCPState state) OVERRIDE; |
+ |
private: |
// Initializes |mode_info| to contain details corresponding to |mode|. Returns |
// true on success. |