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

Unified Diff: content/renderer/media/pepper_platform_video_decoder_impl.cc

Issue 11232014: Move a bunch of code in content\renderer to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac 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
Index: content/renderer/media/pepper_platform_video_decoder_impl.cc
===================================================================
--- content/renderer/media/pepper_platform_video_decoder_impl.cc (revision 163045)
+++ content/renderer/media/pepper_platform_video_decoder_impl.cc (working copy)
@@ -4,8 +4,6 @@
#include "content/renderer/media/pepper_platform_video_decoder_impl.h"
-#include <vector>
-
#include "base/bind.h"
#include "base/logging.h"
#include "content/common/child_process.h"
@@ -14,6 +12,8 @@
using media::BitstreamBuffer;
+namespace content {
+
PlatformVideoDecoderImpl::PlatformVideoDecoderImpl(
VideoDecodeAccelerator::Client* client,
int32 command_buffer_route_id)
@@ -35,7 +35,7 @@
// it is okay to immediately send IPC messages through the returned channel.
GpuChannelHost* channel =
render_thread->EstablishGpuChannelSync(
- content::CAUSE_FOR_GPU_LAUNCH_VIDEODECODEACCELERATOR_INITIALIZE);
+ CAUSE_FOR_GPU_LAUNCH_VIDEODECODEACCELERATOR_INITIALIZE);
if (!channel)
return false;
@@ -126,3 +126,5 @@
DCHECK(RenderThreadImpl::current());
client_->NotifyResetDone();
}
+
+} // namespace content
« no previous file with comments | « content/renderer/media/pepper_platform_video_decoder_impl.h ('k') | content/renderer/media/render_audiosourceprovider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698