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

Side by Side Diff: webkit/media/android/webmediaplayer_impl_android.h

Issue 13688004: Location/size change notification when external rendering is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added ifdef guards Created 7 years, 8 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ 5 #ifndef WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_
6 #define WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ 6 #define WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include <jni.h> 10 #include <jni.h>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 private: 62 private:
63 // Methods inherited from WebMediaPlayerAndroid. 63 // Methods inherited from WebMediaPlayerAndroid.
64 virtual void InitializeMediaPlayer(GURL url) OVERRIDE; 64 virtual void InitializeMediaPlayer(GURL url) OVERRIDE;
65 virtual void PlayInternal() OVERRIDE; 65 virtual void PlayInternal() OVERRIDE;
66 virtual void PauseInternal() OVERRIDE; 66 virtual void PauseInternal() OVERRIDE;
67 virtual void SeekInternal(base::TimeDelta time) OVERRIDE; 67 virtual void SeekInternal(base::TimeDelta time) OVERRIDE;
68 virtual float GetCurrentTimeInternal() const OVERRIDE; 68 virtual float GetCurrentTimeInternal() const OVERRIDE;
69 virtual void ReleaseResourcesInternal() OVERRIDE; 69 virtual void ReleaseResourcesInternal() OVERRIDE;
70 virtual void Destroy() OVERRIDE; 70 virtual void Destroy() OVERRIDE;
71 #if defined(GOOGLE_TV)
71 virtual void RequestExternalSurface() OVERRIDE; 72 virtual void RequestExternalSurface() OVERRIDE;
73 #endif
72 74
73 WebKit::WebFrame* const frame_; 75 WebKit::WebFrame* const frame_;
74 76
75 // Proxy object that delegates method calls on Render Thread. 77 // Proxy object that delegates method calls on Render Thread.
76 // This object is created on the Render Thread and is only called in the 78 // This object is created on the Render Thread and is only called in the
77 // destructor. 79 // destructor.
78 WebMediaPlayerProxyAndroid* proxy_; 80 WebMediaPlayerProxyAndroid* proxy_;
79 81
80 // The current playing time. Because the mediaplayer is in the browser 82 // The current playing time. Because the mediaplayer is in the browser
81 // process, it will regularly update the |current_time_| by calling 83 // process, it will regularly update the |current_time_| by calling
82 // OnTimeUpdate(). 84 // OnTimeUpdate().
83 float current_time_; 85 float current_time_;
84 86
85 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImplAndroid); 87 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImplAndroid);
86 }; 88 };
87 89
88 } // namespace webkit_media 90 } // namespace webkit_media
89 91
90 #endif // WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ 92 #endif // WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698