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

Unified Diff: Source/core/html/HTMLInputElement.cpp

Issue 15015006: HTML Media Capture: Update implementation, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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: Source/core/html/HTMLInputElement.cpp
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
index 315c4b93e67247cacfb2357dc8cfde8bfe6b718c..3b7787e9af3cfe491bb639e2d480cb0e5f2c8a67 100644
--- a/Source/core/html/HTMLInputElement.cpp
+++ b/Source/core/html/HTMLInputElement.cpp
@@ -1707,26 +1707,10 @@ bool HTMLInputElement::shouldAppearIndeterminate() const
}
#if ENABLE(MEDIA_CAPTURE)
-String HTMLInputElement::capture() const
+bool HTMLInputElement::isCaptureEnabled() const
{
- if (!isFileUpload())
- return String();
-
- String capture = fastGetAttribute(captureAttr).lower();
- if (capture == "camera"
- || capture == "camcorder"
- || capture == "microphone"
- || capture == "filesystem")
- return capture;
-
- return "filesystem";
+ return fastHasAttribute(captureAttr);
}
-
-void HTMLInputElement::setCapture(const String& value)
-{
- setAttribute(captureAttr, value);
-}
-
#endif
bool HTMLInputElement::isInRequiredRadioButtonGroup()

Powered by Google App Engine
This is Rietveld 408576698