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

Side by Side Diff: content/browser/compositor/software_output_device_win.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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 #ifndef CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ 5 #ifndef CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_
6 #define CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ 6 #define CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_
7 7
8 #include <windows.h>
9 #include <stddef.h>
10
8 #include <vector> 11 #include <vector>
9 12
13 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
11 #include "cc/output/software_output_device.h" 15 #include "cc/output/software_output_device.h"
12 16
13 #include <windows.h>
14
15 namespace base { 17 namespace base {
16 class SharedMemory; 18 class SharedMemory;
17 } 19 }
18 20
19 namespace ui { 21 namespace ui {
20 class Compositor; 22 class Compositor;
21 } 23 }
22 24
23 namespace content { 25 namespace content {
24 class SoftwareOutputDeviceWin; 26 class SoftwareOutputDeviceWin;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 bool is_hwnd_composited_; 65 bool is_hwnd_composited_;
64 OutputDeviceBacking* backing_; 66 OutputDeviceBacking* backing_;
65 bool in_paint_; 67 bool in_paint_;
66 68
67 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDeviceWin); 69 DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDeviceWin);
68 }; 70 };
69 71
70 } // namespace content 72 } // namespace content
71 73
72 #endif // CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_ 74 #endif // CONTENT_BROWSER_COMPOSITOR_SOFTWARE_OUTPUT_DEVICE_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698