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

Side by Side Diff: cc/test/fake_video_frame_provider.h

Issue 11662003: cc: Put context-loss tests in layer_tree_host_unittest_context.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 80cols Created 7 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
« no previous file with comments | « cc/test/fake_video_frame.cc ('k') | cc/test/fake_video_frame_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_TEST_FAKE_VIDEO_FRAME_PROVIDER_H_
6 #define CC_TEST_FAKE_VIDEO_FRAME_PROVIDER_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "cc/test/fake_video_frame.h"
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebVideoFrameProvid er.h"
11
12 namespace cc {
13
14 // Fake video frame provider that always provides the same VideoFrame.
15 class FakeVideoFrameProvider: public WebKit::WebVideoFrameProvider {
16 public:
17 FakeVideoFrameProvider();
18 virtual ~FakeVideoFrameProvider();
19
20 virtual void setVideoFrameProviderClient(Client* client) OVERRIDE;
21 virtual WebKit::WebVideoFrame* getCurrentFrame() OVERRIDE;
22 virtual void putCurrentFrame(WebKit::WebVideoFrame*) OVERRIDE {}
23
24 void set_frame(FakeVideoFrame* frame) {
25 frame_ = frame;
26 }
27
28 private:
29 FakeVideoFrame* frame_;
30 Client* client_;
31 };
32
33 } // namespace cc
34
35 #endif // CC_TEST_FAKE_VIDEO_FRAME_PROVIDER_H_
OLDNEW
« no previous file with comments | « cc/test/fake_video_frame.cc ('k') | cc/test/fake_video_frame_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698