| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_GTK_EXTENSIONS_EXTENSION_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_EXTENSIONS_EXTENSION_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_EXTENSIONS_EXTENSION_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_EXTENSIONS_EXTENSION_VIEW_GTK_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | |
| 10 #include "chrome/browser/extensions/extension_view.h" | |
| 11 #include "third_party/skia/include/core/SkBitmap.h" | 9 #include "third_party/skia/include/core/SkBitmap.h" |
| 12 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| 11 #include "ui/gfx/size.h" |
| 12 |
| 13 class Browser; |
| 14 class SkBitmap; |
| 13 | 15 |
| 14 namespace content { | 16 namespace content { |
| 15 class RenderViewHost; | 17 class RenderViewHost; |
| 16 } | 18 } |
| 17 | 19 |
| 18 namespace extensions { | 20 namespace extensions { |
| 19 class ExtensionHost; | 21 class ExtensionHost; |
| 20 } | 22 } |
| 21 | 23 |
| 22 class ExtensionViewGtk : public ExtensionView { | 24 class ExtensionViewGtk { |
| 23 public: | 25 public: |
| 24 ExtensionViewGtk(extensions::ExtensionHost* extension_host, Browser* browser); | 26 ExtensionViewGtk(extensions::ExtensionHost* extension_host, Browser* browser); |
| 25 virtual ~ExtensionViewGtk(); | 27 |
| 28 class Container { |
| 29 public: |
| 30 virtual ~Container() {} |
| 31 virtual void OnExtensionSizeChanged(ExtensionViewGtk* view, |
| 32 const gfx::Size& new_size) {} |
| 33 }; |
| 26 | 34 |
| 27 void Init(); | 35 void Init(); |
| 28 | 36 |
| 37 gfx::NativeView native_view(); |
| 38 Browser* browser() const { return browser_; } |
| 39 |
| 29 void SetBackground(const SkBitmap& background); | 40 void SetBackground(const SkBitmap& background); |
| 30 | 41 |
| 42 // Sets the container for this view. |
| 43 void SetContainer(Container* container) { container_ = container; } |
| 44 |
| 45 // Method for the ExtensionHost to notify us about the correct size for |
| 46 // extension contents. |
| 47 void ResizeDueToAutoResize(const gfx::Size& new_size); |
| 48 |
| 49 // Method for the ExtensionHost to notify us when the RenderViewHost has a |
| 50 // connection. |
| 51 void RenderViewCreated(); |
| 52 |
| 53 content::RenderViewHost* render_view_host() const; |
| 54 |
| 31 private: | 55 private: |
| 32 // Overridden from ExtensionView: | |
| 33 virtual Browser* GetBrowser() OVERRIDE; | |
| 34 virtual const Browser* GetBrowser() const OVERRIDE; | |
| 35 virtual gfx::NativeView GetNativeView() OVERRIDE; | |
| 36 virtual content::RenderViewHost* GetRenderViewHost() const OVERRIDE; | |
| 37 virtual void SetContainer(ExtensionViewContainer* container) OVERRIDE; | |
| 38 virtual void ResizeDueToAutoResize(const gfx::Size& new_size) OVERRIDE; | |
| 39 virtual void RenderViewCreated() OVERRIDE; | |
| 40 virtual void DidStopLoading() OVERRIDE; | |
| 41 virtual void WindowFrameChanged() OVERRIDE; | |
| 42 | |
| 43 void CreateWidgetHostView(); | 56 void CreateWidgetHostView(); |
| 44 | 57 |
| 45 Browser* browser_; | 58 Browser* browser_; |
| 46 | 59 |
| 47 extensions::ExtensionHost* extension_host_; | 60 extensions::ExtensionHost* extension_host_; |
| 48 | 61 |
| 49 // The background the view should have once it is initialized. This is set | 62 // The background the view should have once it is initialized. This is set |
| 50 // when the view has a custom background, but hasn't been initialized yet. | 63 // when the view has a custom background, but hasn't been initialized yet. |
| 51 SkBitmap pending_background_; | 64 SkBitmap pending_background_; |
| 52 | 65 |
| 53 // This view's container. | 66 // This view's container. |
| 54 ExtensionViewContainer* container_; | 67 Container* container_; |
| 55 | 68 |
| 56 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk); | 69 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk); |
| 57 }; | 70 }; |
| 58 | 71 |
| 59 #endif // CHROME_BROWSER_UI_GTK_EXTENSIONS_EXTENSION_VIEW_GTK_H_ | 72 #endif // CHROME_BROWSER_UI_GTK_EXTENSIONS_EXTENSION_VIEW_GTK_H_ |
| OLD | NEW |