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

Unified Diff: media/gpu/vp8_decoder.h

Issue 2061823003: media: Drop "media::" in media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: work around clang format by adding an empty line 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
« no previous file with comments | « media/gpu/video_encode_accelerator_unittest.cc ('k') | media/gpu/vp8_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/vp8_decoder.h
diff --git a/media/gpu/vp8_decoder.h b/media/gpu/vp8_decoder.h
index 32ca48b32717bef20e27f0fbe02070d83ff9adef..549271fb415523f4d9e8404c1142fe07a5933249 100644
--- a/media/gpu/vp8_decoder.h
+++ b/media/gpu/vp8_decoder.h
@@ -46,7 +46,7 @@ class MEDIA_GPU_EXPORT VP8Decoder : public AcceleratedVideoDecoder {
// Note that this runs the decode in hardware.
// Return true if successful.
virtual bool SubmitDecode(const scoped_refptr<VP8Picture>& pic,
- const media::Vp8FrameHeader* frame_hdr,
+ const Vp8FrameHeader* frame_hdr,
const scoped_refptr<VP8Picture>& last_frame,
const scoped_refptr<VP8Picture>& golden_frame,
const scoped_refptr<VP8Picture>& alt_frame) = 0;
@@ -66,7 +66,7 @@ class MEDIA_GPU_EXPORT VP8Decoder : public AcceleratedVideoDecoder {
VP8Decoder(VP8Accelerator* accelerator);
~VP8Decoder() override;
- // media::AcceleratedVideoDecoder implementation.
+ // AcceleratedVideoDecoder implementation.
bool Flush() override WARN_UNUSED_RESULT;
void Reset() override;
void SetStream(const uint8_t* ptr, size_t size) override;
@@ -87,9 +87,9 @@ class MEDIA_GPU_EXPORT VP8Decoder : public AcceleratedVideoDecoder {
State state_;
- media::Vp8Parser parser_;
+ Vp8Parser parser_;
- std::unique_ptr<media::Vp8FrameHeader> curr_frame_hdr_;
+ std::unique_ptr<Vp8FrameHeader> curr_frame_hdr_;
scoped_refptr<VP8Picture> curr_pic_;
scoped_refptr<VP8Picture> last_frame_;
scoped_refptr<VP8Picture> golden_frame_;
« no previous file with comments | « media/gpu/video_encode_accelerator_unittest.cc ('k') | media/gpu/vp8_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698