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

Side by Side Diff: content/browser/renderer_host/backing_store_x.h

Issue 6532073: Move core pieces of browser\renderer_host to src\content. (Closed) Base URL: svn://chrome-svn/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
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 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698