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

Side by Side Diff: remoting/host/chromeos/aura_desktop_capturer_unittest.cc

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "remoting/host/chromeos/aura_desktop_capturer.h" 5 #include "remoting/host/chromeos/aura_desktop_capturer.h"
6 6
7 #include "cc/output/copy_output_result.h" 7 #include "cc/output/copy_output_result.h"
8 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "third_party/skia/include/core/SkBitmap.h" 10 #include "third_party/skia/include/core/SkBitmap.h"
(...skipping 21 matching lines...) Expand all
32 0x20, 0x3c, 0x00, 0xc6, 0xe1, 0x73, 0x34, 0xe2, 0x23, 0x99, 0xc4, 0xfa, 32 0x20, 0x3c, 0x00, 0xc6, 0xe1, 0x73, 0x34, 0xe2, 0x23, 0x99, 0xc4, 0xfa,
33 0x91, 0xc2, 0xd5, 0x97, 0xc1, 0x8b, 0xd0, 0x3c, 0x13, 0xba, 0xf0, 0xd7 33 0x91, 0xc2, 0xd5, 0x97, 0xc1, 0x8b, 0xd0, 0x3c, 0x13, 0xba, 0xf0, 0xd7
34 }; 34 };
35 } // namespace 35 } // namespace
36 36
37 class AuraDesktopCapturerTest : public testing::Test, 37 class AuraDesktopCapturerTest : public testing::Test,
38 public webrtc::DesktopCapturer::Callback { 38 public webrtc::DesktopCapturer::Callback {
39 public: 39 public:
40 AuraDesktopCapturerTest() {} 40 AuraDesktopCapturerTest() {}
41 41
42 virtual void SetUp() OVERRIDE; 42 virtual void SetUp() override;
43 43
44 MOCK_METHOD1(CreateSharedMemory, webrtc::SharedMemory*(size_t size)); 44 MOCK_METHOD1(CreateSharedMemory, webrtc::SharedMemory*(size_t size));
45 MOCK_METHOD1(OnCaptureCompleted, void(webrtc::DesktopFrame* frame)); 45 MOCK_METHOD1(OnCaptureCompleted, void(webrtc::DesktopFrame* frame));
46 46
47 protected: 47 protected:
48 void SimulateFrameCapture() { 48 void SimulateFrameCapture() {
49 scoped_ptr<SkBitmap> bitmap(new SkBitmap()); 49 scoped_ptr<SkBitmap> bitmap(new SkBitmap());
50 const SkImageInfo& info = 50 const SkImageInfo& info =
51 SkImageInfo::Make(3, 4, kRGBA_8888_SkColorType, kPremul_SkAlphaType); 51 SkImageInfo::Make(3, 4, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
52 bitmap->installPixels(info, const_cast<unsigned char*>(frame_data), 12); 52 bitmap->installPixels(info, const_cast<unsigned char*>(frame_data), 12);
(...skipping 23 matching lines...) Expand all
76 uint8_t* captured_data = captured_frame->data(); 76 uint8_t* captured_data = captured_frame->data();
77 EXPECT_EQ( 77 EXPECT_EQ(
78 0, 78 0,
79 memcmp( 79 memcmp(
80 frame_data, captured_data, sizeof(frame_data))); 80 frame_data, captured_data, sizeof(frame_data)));
81 81
82 delete captured_frame; 82 delete captured_frame;
83 } 83 }
84 84
85 } // namespace remoting 85 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/chromeos/aura_desktop_capturer.h ('k') | remoting/host/chromium_port_allocator_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698