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

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

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 | « remoting/host/capturer_gdi.cc ('k') | skia/ext/image_operations_unittest.cc » ('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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "gfx/rect.h"
13 #include "remoting/base/types.h" 12 #include "remoting/base/types.h"
13 #include "ui/gfx/rect.h"
14 14
15 namespace remoting { 15 namespace remoting {
16 16
17 typedef uint8 DiffInfo; 17 typedef uint8 DiffInfo;
18 18
19 // Size (in pixels) of each square block used for diffing. 19 // Size (in pixels) of each square block used for diffing.
20 // This must be a multiple of sizeof(uint64). 20 // This must be a multiple of sizeof(uint64).
21 static const int kBlockSize = 32; 21 static const int kBlockSize = 32;
22 22
23 class Differ { 23 class Differ {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 int diff_info_width_; 79 int diff_info_width_;
80 int diff_info_height_; 80 int diff_info_height_;
81 int diff_info_size_; 81 int diff_info_size_;
82 82
83 DISALLOW_COPY_AND_ASSIGN(Differ); 83 DISALLOW_COPY_AND_ASSIGN(Differ);
84 }; 84 };
85 85
86 } // namespace remoting 86 } // namespace remoting
87 87
88 #endif // REMOTING_HOST_DIFFER_H_ 88 #endif // REMOTING_HOST_DIFFER_H_
OLDNEW
« no previous file with comments | « remoting/host/capturer_gdi.cc ('k') | skia/ext/image_operations_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698