Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 #include "content/renderer/media/media_stream_video_source.h" | |
| 6 | |
| 7 // TODO(mostynb): refactor webrtc code and move these back | |
| 8 // into media_stream_video_source.cc - crbug.com/463829 | |
| 9 | |
| 10 namespace content { | |
| 11 | |
| 12 const int MediaStreamVideoSource::kDefaultWidth = 640; | |
|
DaleCurtis
2015/03/04 19:21:30
Why not just stick these as enum {} in a shared he
Mostyn Bramley-Moore
2015/03/04 20:23:47
Actually why not keep them as static consts, but w
| |
| 13 const int MediaStreamVideoSource::kDefaultHeight = 480; | |
| 14 const int MediaStreamVideoSource::kDefaultFrameRate = 30; | |
| 15 const int MediaStreamVideoSource::kUnknownFrameRate = 0; | |
| 16 | |
| 17 } // namespace content | |
| OLD | NEW |