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

Side by Side Diff: webkit/media/webmediaplayer_delegate.h

Issue 9117001: For readability. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_WEBMEDIAPLAYER_DELEGATE_H_ 5 #ifndef WEBKIT_MEDIA_WEBMEDIAPLAYER_DELEGATE_H_
6 #define WEBKIT_MEDIA_WEBMEDIAPLAYER_DELEGATE_H_ 6 #define WEBKIT_MEDIA_WEBMEDIAPLAYER_DELEGATE_H_
7 7
8 namespace webkit_media { 8 namespace webkit_media {
9 9
10 class WebMediaPlayerImpl; 10 class WebMediaPlayerImpl;
(...skipping 11 matching lines...) Expand all
22 // The specified player stopped playing media. 22 // The specified player stopped playing media.
23 virtual void DidPause(WebMediaPlayerImpl* player) {} 23 virtual void DidPause(WebMediaPlayerImpl* player) {}
24 24
25 // The specified player was destroyed. Do not call any methods on it. 25 // The specified player was destroyed. Do not call any methods on it.
26 virtual void PlayerGone(WebMediaPlayerImpl* player) {} 26 virtual void PlayerGone(WebMediaPlayerImpl* player) {}
27 }; 27 };
28 28
29 } // namespace webkit_media 29 } // namespace webkit_media
30 30
31 #endif // WEBKIT_MEDIA_WEBMEDIAPLAYER_DELEGATE_H_ 31 #endif // WEBKIT_MEDIA_WEBMEDIAPLAYER_DELEGATE_H_
32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698