OLD | NEW |
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 CHROME_BROWSER_RENDERER_HOST_BACKING_STORE_X_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BACKING_STORE_X_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_BACKING_STORE_X_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_BACKING_STORE_X_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 #include "chrome/browser/renderer_host/backing_store.h" | 11 #include "content/browser/renderer_host/backing_store.h" |
12 #include "ui/base/x/x11_util.h" | 12 #include "ui/base/x/x11_util.h" |
13 | 13 |
14 namespace gfx { | 14 namespace gfx { |
15 class Point; | 15 class Point; |
16 class Rect; | 16 class Rect; |
17 } // namespace gfx | 17 } // namespace gfx |
18 | 18 |
19 typedef struct _GdkDrawable GdkDrawable; | 19 typedef struct _GdkDrawable GdkDrawable; |
20 class SkBitmap; | 20 class SkBitmap; |
21 | 21 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 // This is a handle to the server side pixmap which is our backing store. | 91 // This is a handle to the server side pixmap which is our backing store. |
92 XID pixmap_; | 92 XID pixmap_; |
93 // This is the RENDER picture pointing at |pixmap_|. | 93 // This is the RENDER picture pointing at |pixmap_|. |
94 XID picture_; | 94 XID picture_; |
95 // This is a default graphic context, used in XCopyArea | 95 // This is a default graphic context, used in XCopyArea |
96 void* pixmap_gc_; | 96 void* pixmap_gc_; |
97 | 97 |
98 DISALLOW_COPY_AND_ASSIGN(BackingStoreX); | 98 DISALLOW_COPY_AND_ASSIGN(BackingStoreX); |
99 }; | 99 }; |
100 | 100 |
101 #endif // CHROME_BROWSER_RENDERER_HOST_BACKING_STORE_X_H_ | 101 #endif // CONTENT_BROWSER_RENDERER_HOST_BACKING_STORE_X_H_ |
OLD | NEW |