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

Side by Side Diff: webkit/api/src/WebMediaPlayerClientImpl.h

Issue 149604: Begin implementation of the context menu for Video and Audio tags. (Closed)
Patch Set: Fix small style issues. Created 11 years, 5 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
« no previous file with comments | « webkit/api/public/WebMediaPlayer.h ('k') | webkit/api/src/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 virtual void durationChanged(); 59 virtual void durationChanged();
60 virtual void rateChanged(); 60 virtual void rateChanged();
61 virtual void sizeChanged(); 61 virtual void sizeChanged();
62 virtual void sawUnsupportedTracks(); 62 virtual void sawUnsupportedTracks();
63 63
64 // MediaPlayerPrivateInterface methods: 64 // MediaPlayerPrivateInterface methods:
65 virtual void load(const WebCore::String& url); 65 virtual void load(const WebCore::String& url);
66 virtual void cancelLoad(); 66 virtual void cancelLoad();
67 virtual void play(); 67 virtual void play();
68 virtual void pause(); 68 virtual void pause();
69 virtual bool supportsFullscreen() const;
70 virtual bool supportsSave() const;
69 virtual WebCore::IntSize naturalSize() const; 71 virtual WebCore::IntSize naturalSize() const;
70 virtual bool hasVideo() const; 72 virtual bool hasVideo() const;
71 virtual void setVisible(bool); 73 virtual void setVisible(bool);
72 virtual float duration() const; 74 virtual float duration() const;
73 virtual float currentTime() const; 75 virtual float currentTime() const;
74 virtual void seek(float time); 76 virtual void seek(float time);
75 virtual bool seeking() const; 77 virtual bool seeking() const;
76 virtual void setEndTime(float time); 78 virtual void setEndTime(float time);
77 virtual void setRate(float); 79 virtual void setRate(float);
78 virtual bool paused() const; 80 virtual bool paused() const;
(...skipping 21 matching lines...) Expand all
100 WebCore::MediaPlayer* m_mediaPlayer; 102 WebCore::MediaPlayer* m_mediaPlayer;
101 OwnPtr<WebMediaPlayer> m_webMediaPlayer; 103 OwnPtr<WebMediaPlayer> m_webMediaPlayer;
102 OwnPtr<WebKit::WebCanvas> m_webCanvas; 104 OwnPtr<WebKit::WebCanvas> m_webCanvas;
103 }; 105 };
104 106
105 } // namespace WebKit 107 } // namespace WebKit
106 108
107 #endif 109 #endif
108 110
109 #endif 111 #endif
OLDNEW
« no previous file with comments | « webkit/api/public/WebMediaPlayer.h ('k') | webkit/api/src/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698