OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_RENDER_WIDGET_HOST_VIEW_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_H_ |
7 | 7 |
8 #include "base/gfx/native_widget_types.h" | 8 #include "base/gfx/native_widget_types.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "skia/include/SkBitmap.h" | 10 #include "third_party/skia/include/core/SkBitmap.h" |
11 #include "webkit/glue/webplugin.h" | 11 #include "webkit/glue/webplugin.h" |
12 #include "webkit/glue/webwidget_delegate.h" | 12 #include "webkit/glue/webwidget_delegate.h" |
13 | 13 |
14 namespace gfx { | 14 namespace gfx { |
15 class Rect; | 15 class Rect; |
16 class Size; | 16 class Size; |
17 } | 17 } |
18 namespace IPC { | 18 namespace IPC { |
19 class Message; | 19 class Message; |
20 } | 20 } |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 | 167 |
168 // A custom background to paint behind the web content. This will be tiled | 168 // A custom background to paint behind the web content. This will be tiled |
169 // horizontally. Can be null, in which case we fall back to painting white. | 169 // horizontally. Can be null, in which case we fall back to painting white. |
170 SkBitmap background_; | 170 SkBitmap background_; |
171 | 171 |
172 private: | 172 private: |
173 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostView); | 173 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostView); |
174 }; | 174 }; |
175 | 175 |
176 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_H_ | 176 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_H_ |
OLD | NEW |