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

Side by Side Diff: webkit/media/webmediaplayer_impl.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 // Delegate calls from WebCore::MediaPlayerPrivate to Chrome's video player. 5 // Delegate calls from WebCore::MediaPlayerPrivate to Chrome's video player.
6 // It contains PipelineImpl which is the actual media player pipeline, it glues 6 // It contains PipelineImpl which is the actual media player pipeline, it glues
7 // the media player pipeline, data source, audio renderer and renderer. 7 // the media player pipeline, data source, audio renderer and renderer.
8 // PipelineImpl would creates multiple threads and access some public methods 8 // PipelineImpl would creates multiple threads and access some public methods
9 // of this class, so we need to be extra careful about concurrent access of 9 // of this class, so we need to be extra careful about concurrent access of
10 // methods and members. 10 // methods and members.
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 bool is_accelerated_compositing_active_; 264 bool is_accelerated_compositing_active_;
265 265
266 bool incremented_externally_allocated_memory_; 266 bool incremented_externally_allocated_memory_;
267 267
268 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); 268 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl);
269 }; 269 };
270 270
271 } // namespace webkit_media 271 } // namespace webkit_media
272 272
273 #endif // WEBKIT_MEDIA_WEBMEDIAPLAYER_IMPL_H_ 273 #endif // WEBKIT_MEDIA_WEBMEDIAPLAYER_IMPL_H_
274
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698