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

Unified Diff: media/gpu/shared_memory_region.cc

Issue 2061823003: media: Drop "media::" in media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fixes Created 4 years, 6 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: media/gpu/shared_memory_region.cc
diff --git a/media/gpu/shared_memory_region.cc b/media/gpu/shared_memory_region.cc
index 13df2041ac6fb00f28b58b0b24d3daa0924258e2..38d2038c69a32cc677f237909592259cc05f7f0a 100644
--- a/media/gpu/shared_memory_region.cc
+++ b/media/gpu/shared_memory_region.cc
@@ -18,9 +18,8 @@ SharedMemoryRegion::SharedMemoryRegion(const base::SharedMemoryHandle& handle,
DCHECK_GE(offset_, 0) << "Invalid offset: " << offset_;
}
-SharedMemoryRegion::SharedMemoryRegion(
- const media::BitstreamBuffer& bitstream_buffer,
- bool read_only)
+SharedMemoryRegion::SharedMemoryRegion(const BitstreamBuffer& bitstream_buffer,
+ bool read_only)
: SharedMemoryRegion(bitstream_buffer.handle(),
bitstream_buffer.offset(),
bitstream_buffer.size(),

Powered by Google App Engine
This is Rietveld 408576698