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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/android/media_metadata_android.cc
diff --git a/webkit/media/android/media_metadata_android.cc b/webkit/media/android/media_metadata_android.cc
deleted file mode 100644
index 4f6e16948265afe790d16a543f4daf89991c26a9..0000000000000000000000000000000000000000
--- a/webkit/media/android/media_metadata_android.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2012 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 "webkit/media/android/media_metadata_android.h"
-
-namespace webkit_media {
-
-MediaMetadataAndroid::MediaMetadataAndroid()
- : width(0),
- height(0),
- paused(false),
- can_pause(false),
- can_seek_forward(false),
- can_seek_backward(false) {
-}
-
-MediaMetadataAndroid::MediaMetadataAndroid(int w,
- int h,
- base::TimeDelta d,
- base::TimeDelta ct,
- bool p,
- bool cp,
- bool csf,
- bool csb)
- : width(w),
- height(h),
- duration(d),
- current_time(ct),
- paused(p),
- can_pause(cp),
- can_seek_forward(csf),
- can_seek_backward(csb) {
-}
-
-MediaMetadataAndroid::~MediaMetadataAndroid() {
-}
-
-} // namespace webkit_media
« 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