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

Side by Side Diff: remoting/capturer/differ.h

Issue 11470028: Move screen capturers to remoting/capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 REMOTING_HOST_DIFFER_H_ 5 #ifndef REMOTING_HOST_DIFFER_H_
6 #define REMOTING_HOST_DIFFER_H_ 6 #define REMOTING_HOST_DIFFER_H_
Wez 2012/12/11 05:23:18 nit: Consider re-naming to video_frame_differencer
Sergey Ulanov 2012/12/12 18:31:12 Fixed the header guard and added TODO to rename it
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "third_party/skia/include/core/SkRegion.h" 12 #include "third_party/skia/include/core/SkRegion.h"
13 13
14 namespace remoting { 14 namespace remoting {
15 15
16 typedef uint8 DiffInfo; 16 typedef uint8 DiffInfo;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 int diff_info_width_; 73 int diff_info_width_;
74 int diff_info_height_; 74 int diff_info_height_;
75 int diff_info_size_; 75 int diff_info_size_;
76 76
77 DISALLOW_COPY_AND_ASSIGN(Differ); 77 DISALLOW_COPY_AND_ASSIGN(Differ);
78 }; 78 };
79 79
80 } // namespace remoting 80 } // namespace remoting
81 81
82 #endif // REMOTING_HOST_DIFFER_H_ 82 #endif // REMOTING_HOST_DIFFER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698