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

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

Issue 1167703002: Move test runner to a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 5 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: 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
deleted file mode 100644
index b33bfdbf0a061ce12b3be27e2a3e004d358129cd..0000000000000000000000000000000000000000
--- a/content/shell/renderer/test_runner/mock_constraints.cc
+++ /dev/null
@@ -1,62 +0,0 @@
-// 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

Powered by Google App Engine
This is Rietveld 408576698