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

Side by Side Diff: content/renderer/media/media_stream_video_source_constants.cc

Issue 973373002: fix for builds with webrtc disabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: leave a TODO note Created 5 years, 9 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 unified diff | Download patch
OLDNEW
(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
OLDNEW
« content/content_renderer.gypi ('K') | « content/renderer/media/media_stream_video_source.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698