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

Side by Side Diff: remoting/host/chromeos/skia_bitmap_desktop_frame.h

Issue 866153003: Update {virtual,override,final} to follow C++11 style in remoting, round 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 "base/memory/scoped_ptr.h" 5 #include "base/memory/scoped_ptr.h"
6 #include "third_party/skia/include/core/SkBitmap.h" 6 #include "third_party/skia/include/core/SkBitmap.h"
7 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" 7 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
8 8
9 namespace remoting { 9 namespace remoting {
10 10
11 // DesktopFrame implementation used by screen capture on ChromeOS. 11 // DesktopFrame implementation used by screen capture on ChromeOS.
12 // Frame data is stored in a SkBitmap. 12 // Frame data is stored in a SkBitmap.
13 class SkiaBitmapDesktopFrame : public webrtc::DesktopFrame { 13 class SkiaBitmapDesktopFrame : public webrtc::DesktopFrame {
14 public: 14 public:
15 static SkiaBitmapDesktopFrame* Create(scoped_ptr<SkBitmap> bitmap); 15 static SkiaBitmapDesktopFrame* Create(scoped_ptr<SkBitmap> bitmap);
16 virtual ~SkiaBitmapDesktopFrame(); 16 ~SkiaBitmapDesktopFrame() override;
17 17
18 private: 18 private:
19 SkiaBitmapDesktopFrame(webrtc::DesktopSize size, 19 SkiaBitmapDesktopFrame(webrtc::DesktopSize size,
20 int stride, 20 int stride,
21 uint8_t* data, 21 uint8_t* data,
22 scoped_ptr<SkBitmap> bitmap); 22 scoped_ptr<SkBitmap> bitmap);
23 23
24 scoped_ptr<SkBitmap> bitmap_; 24 scoped_ptr<SkBitmap> bitmap_;
25 25
26 DISALLOW_COPY_AND_ASSIGN(SkiaBitmapDesktopFrame); 26 DISALLOW_COPY_AND_ASSIGN(SkiaBitmapDesktopFrame);
27 }; 27 };
28 28
29 } // namespace remoting 29 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/chromeos/aura_desktop_capturer.h ('k') | remoting/host/local_input_monitor_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698