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

Unified Diff: webkit/media/android/media_metadata_android.h

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 | « media/base/android/media_player_bridge.cc ('k') | webkit/media/android/media_metadata_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/android/media_metadata_android.h
diff --git a/webkit/media/android/media_metadata_android.h b/webkit/media/android/media_metadata_android.h
deleted file mode 100644
index 3298f9341768129312ee96fe465be2eb4cd459e0..0000000000000000000000000000000000000000
--- a/webkit/media/android/media_metadata_android.h
+++ /dev/null
@@ -1,38 +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.
-
-#ifndef WEBKIT_MEDIA_ANDROID_MEDIA_METADATA_ANDROID_H_
-#define WEBKIT_MEDIA_ANDROID_MEDIA_METADATA_ANDROID_H_
-
-#include "base/basictypes.h"
-#include "base/time.h"
-
-namespace webkit_media {
-
-// Provides the initial media metadata to ContentVideoView.
-struct MediaMetadataAndroid {
- MediaMetadataAndroid();
- MediaMetadataAndroid(int w,
- int h,
- base::TimeDelta d,
- base::TimeDelta ct,
- bool p,
- bool cp,
- bool csf,
- bool csb);
- ~MediaMetadataAndroid();
-
- int width;
- int height;
- base::TimeDelta duration;
- base::TimeDelta current_time;
- bool paused;
- bool can_pause;
- bool can_seek_forward;
- bool can_seek_backward;
-};
-
-} // namespace webkit_media
-
-#endif // WEBKIT_MEDIA_ANDROID_MEDIA_METADATA_ANDROID_H_
« no previous file with comments | « media/base/android/media_player_bridge.cc ('k') | webkit/media/android/media_metadata_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698