| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_GTK_EXTENSION_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ |
| 7 | 7 |
| 8 #include "app/gfx/native_widget_types.h" |
| 8 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 9 #include "base/gfx/native_widget_types.h" | |
| 10 #include "third_party/skia/include/core/SkBitmap.h" | 10 #include "third_party/skia/include/core/SkBitmap.h" |
| 11 | 11 |
| 12 class Browser; | 12 class Browser; |
| 13 class ExtensionHost; | 13 class ExtensionHost; |
| 14 class RenderViewHost; | 14 class RenderViewHost; |
| 15 class RenderWidgetHostViewGtk; | 15 class RenderWidgetHostViewGtk; |
| 16 class SkBitmap; | 16 class SkBitmap; |
| 17 | 17 |
| 18 class ExtensionViewGtk { | 18 class ExtensionViewGtk { |
| 19 public: | 19 public: |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 RenderWidgetHostViewGtk* render_widget_host_view_; | 52 RenderWidgetHostViewGtk* render_widget_host_view_; |
| 53 | 53 |
| 54 // The background the view should have once it is initialized. This is set | 54 // The background the view should have once it is initialized. This is set |
| 55 // when the view has a custom background, but hasn't been initialized yet. | 55 // when the view has a custom background, but hasn't been initialized yet. |
| 56 SkBitmap pending_background_; | 56 SkBitmap pending_background_; |
| 57 | 57 |
| 58 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk); | 58 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 #endif // CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ | 61 #endif // CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ |
| OLD | NEW |