| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_CONSTRAINT_FACTORY_H_ | |
| 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_CONSTRAINT_FACTORY_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "third_party/WebKit/public/platform/WebMediaConstraints.h" | |
| 12 | |
| 13 namespace content { | |
| 14 | |
| 15 class MockMediaConstraintFactory { | |
| 16 public: | |
| 17 MockMediaConstraintFactory(); | |
| 18 ~MockMediaConstraintFactory(); | |
| 19 | |
| 20 blink::WebMediaConstraints CreateWebMediaConstraints() const; | |
| 21 void AddMandatory(const std::string& key, int value); | |
| 22 void AddMandatory(const std::string& key, double value); | |
| 23 void AddMandatory(const std::string& key, const std::string& value); | |
| 24 void AddMandatory(const std::string& key, bool value); | |
| 25 void AddOptional(const std::string& key, int value); | |
| 26 void AddOptional(const std::string& key, double value); | |
| 27 void AddOptional(const std::string& key, const std::string& value); | |
| 28 void AddOptional(const std::string& key, bool value); | |
| 29 void DisableDefaultAudioConstraints(); | |
| 30 | |
| 31 private: | |
| 32 std::vector<blink::WebMediaConstraint> mandatory_; | |
| 33 std::vector<blink::WebMediaConstraint> optional_; | |
| 34 }; | |
| 35 | |
| 36 } // namespace content | |
| 37 | |
| 38 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_CONSTRAINT_FACTORY_H_ | |
| OLD | NEW |