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

Unified Diff: third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h

Issue 2375543004: ImageCapture: wire |colorTemperature| set/get for Linux/Cros (Closed)
Patch Set: Created 4 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: third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h
diff --git a/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h b/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h
index 3a6da5e641929eb755dd51ea4b885eaf8610bf25..0cdf21bb032cec9cf957590955e54eee19b93b4d 100644
--- a/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h
+++ b/third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h
@@ -50,6 +50,9 @@ public:
bool redEyeReduction() const { return m_redEyeReduction; }
void setRedEyeReduction(bool redEyeReduction) { m_redEyeReduction = redEyeReduction; }
+ MediaSettingsRange* colorTemperature() const { return m_colorTemperature; }
+ void setColorTemperature(MediaSettingsRange* value) { m_colorTemperature = value; }
+
DECLARE_VIRTUAL_TRACE();
private:
@@ -65,6 +68,8 @@ private:
media::mojom::blink::MeteringMode m_whiteBalanceMode = media::mojom::blink::MeteringMode::NONE;
media::mojom::blink::FillLightMode m_fillLightMode = media::mojom::blink::FillLightMode::NONE;
bool m_redEyeReduction;
+
+ Member<MediaSettingsRange> m_colorTemperature;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698