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

Side by Side Diff: media/filters/mock_gpu_video_accelerator_factories.h

Issue 623263003: replace OVERRIDE and FINAL with override and final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « media/filters/in_memory_url_protocol.h ('k') | media/filters/opus_audio_decoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 MEDIA_FILTERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 5 #ifndef MEDIA_FILTERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
6 #define MEDIA_FILTERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 6 #define MEDIA_FILTERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "media/filters/gpu_video_accelerator_factories.h" 10 #include "media/filters/gpu_video_accelerator_factories.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 MOCK_METHOD3(ReadPixels, 42 MOCK_METHOD3(ReadPixels,
43 void(uint32 texture_id, 43 void(uint32 texture_id,
44 const gfx::Rect& visible_rect, 44 const gfx::Rect& visible_rect,
45 const SkBitmap& pixels)); 45 const SkBitmap& pixels));
46 MOCK_METHOD1(CreateSharedMemory, base::SharedMemory*(size_t size)); 46 MOCK_METHOD1(CreateSharedMemory, base::SharedMemory*(size_t size));
47 MOCK_METHOD0(GetTaskRunner, scoped_refptr<base::SingleThreadTaskRunner>()); 47 MOCK_METHOD0(GetTaskRunner, scoped_refptr<base::SingleThreadTaskRunner>());
48 MOCK_METHOD0(GetVideoEncodeAcceleratorSupportedProfiles, 48 MOCK_METHOD0(GetVideoEncodeAcceleratorSupportedProfiles,
49 std::vector<VideoEncodeAccelerator::SupportedProfile>()); 49 std::vector<VideoEncodeAccelerator::SupportedProfile>());
50 50
51 virtual scoped_ptr<VideoDecodeAccelerator> CreateVideoDecodeAccelerator() 51 virtual scoped_ptr<VideoDecodeAccelerator> CreateVideoDecodeAccelerator()
52 OVERRIDE; 52 override;
53 53
54 virtual scoped_ptr<VideoEncodeAccelerator> CreateVideoEncodeAccelerator() 54 virtual scoped_ptr<VideoEncodeAccelerator> CreateVideoEncodeAccelerator()
55 OVERRIDE; 55 override;
56 56
57 private: 57 private:
58 virtual ~MockGpuVideoAcceleratorFactories(); 58 virtual ~MockGpuVideoAcceleratorFactories();
59 59
60 DISALLOW_COPY_AND_ASSIGN(MockGpuVideoAcceleratorFactories); 60 DISALLOW_COPY_AND_ASSIGN(MockGpuVideoAcceleratorFactories);
61 }; 61 };
62 62
63 } // namespace media 63 } // namespace media
64 64
65 #endif // MEDIA_FILTERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ 65 #endif // MEDIA_FILTERS_MOCK_GPU_VIDEO_ACCELERATOR_FACTORIES_H_
OLDNEW
« no previous file with comments | « media/filters/in_memory_url_protocol.h ('k') | media/filters/opus_audio_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698