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

Unified Diff: content/shell/renderer/test_runner/mock_constraints.cc

Issue 295983008: test_runner: Migrate MockConstraint to our Chromium C++ style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « content/shell/renderer/test_runner/mock_constraints.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/test_runner/mock_constraints.cc
diff --git a/content/shell/renderer/test_runner/mock_constraints.cc b/content/shell/renderer/test_runner/mock_constraints.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b33bfdbf0a061ce12b3be27e2a3e004d358129cd
--- /dev/null
+++ b/content/shell/renderer/test_runner/mock_constraints.cc
@@ -0,0 +1,62 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/shell/renderer/test_runner/mock_constraints.h"
+
+#include "third_party/WebKit/public/platform/WebMediaConstraints.h"
+#include "third_party/WebKit/public/platform/WebString.h"
+
+using blink::WebMediaConstraint;
+using blink::WebMediaConstraints;
+using blink::WebString;
+using blink::WebVector;
+
+namespace content {
+
+namespace {
+
+bool IsSupported(const WebString& constraint) {
+ return constraint == "valid_and_supported_1" ||
+ constraint == "valid_and_supported_2";
+}
+
+bool IsValid(const WebString& constraint) {
+ return IsSupported(constraint) || constraint == "valid_but_unsupported_1" ||
+ constraint == "valid_but_unsupported_2";
+}
+
+} // namespace
+
+bool MockConstraints::VerifyConstraints(const WebMediaConstraints& constraints,
+ WebString* failed_constraint) {
+ WebVector<WebMediaConstraint> mandatory_constraints;
+ constraints.getMandatoryConstraints(mandatory_constraints);
+ if (mandatory_constraints.size()) {
+ for (size_t i = 0; i < mandatory_constraints.size(); ++i) {
+ const WebMediaConstraint& curr = mandatory_constraints[i];
+ if (!IsSupported(curr.m_name) || curr.m_value != "1") {
+ if (failed_constraint)
+ *failed_constraint = curr.m_name;
+ return false;
+ }
+ }
+ }
+
+ WebVector<WebMediaConstraint> optional_constraints;
+ constraints.getOptionalConstraints(optional_constraints);
+ if (optional_constraints.size()) {
+ for (size_t i = 0; i < optional_constraints.size(); ++i) {
+ const WebMediaConstraint& curr = optional_constraints[i];
+ if (!IsValid(curr.m_name) || curr.m_value != "0") {
+ if (failed_constraint)
+ *failed_constraint = curr.m_name;
+ return false;
+ }
+ }
+ }
+
+ return true;
+}
+
+} // namespace content
« no previous file with comments | « content/shell/renderer/test_runner/mock_constraints.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698