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

Side by Side Diff: webkit/media/android/media_metadata_android.cc

Issue 10979047: Upstream fullscreen video implementation for android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merging latest changes Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 "webkit/media/android/media_metadata_android.h"
6
7 namespace webkit_media {
8
9 MediaMetadataAndroid::MediaMetadataAndroid()
10 : width(0),
11 height(0),
12 paused(false),
13 can_pause(false),
14 can_seek_forward(false),
15 can_seek_backward(false) {
16 }
17
18 MediaMetadataAndroid::MediaMetadataAndroid(int w,
19 int h,
20 base::TimeDelta d,
21 base::TimeDelta ct,
22 bool p,
23 bool cp,
24 bool csf,
25 bool csb)
26 : width(w),
27 height(h),
28 duration(d),
29 current_time(ct),
30 paused(p),
31 can_pause(cp),
32 can_seek_forward(csf),
33 can_seek_backward(csb) {
34 }
35
36 MediaMetadataAndroid::~MediaMetadataAndroid() {
37 }
38
39 } // namespace webkit_media
OLDNEW
« no previous file with comments | « webkit/media/android/media_metadata_android.h ('k') | webkit/media/android/webmediaplayer_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698