Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: chromeos/display/real_output_configurator_delegate.h

Issue 24039002: Pepper API implementation for output protection. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: use cached_outputs_ in output_configurator Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698