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 CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ |
6 #define CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "content/renderer/mouse_lock_dispatcher.h" | 9 #include "content/renderer/mouse_lock_dispatcher.h" |
10 #include "content/renderer/pepper/fullscreen_container.h" | 10 #include "content/renderer/pepper/fullscreen_container.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 // in RenderWidgetFullscreen. | 42 // in RenderWidgetFullscreen. |
43 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 43 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
44 | 44 |
45 // Could be NULL when this widget is closing. | 45 // Could be NULL when this widget is closing. |
46 PepperPluginInstanceImpl* plugin() const { return plugin_; } | 46 PepperPluginInstanceImpl* plugin() const { return plugin_; } |
47 | 47 |
48 MouseLockDispatcher* mouse_lock_dispatcher() const { | 48 MouseLockDispatcher* mouse_lock_dispatcher() const { |
49 return mouse_lock_dispatcher_.get(); | 49 return mouse_lock_dispatcher_.get(); |
50 } | 50 } |
51 | 51 |
52 bool is_compositing() const { return !!layer_; } | |
53 | |
54 protected: | 52 protected: |
55 RenderWidgetFullscreenPepper(PepperPluginInstanceImpl* plugin, | 53 RenderWidgetFullscreenPepper(PepperPluginInstanceImpl* plugin, |
56 const GURL& active_url, | 54 const GURL& active_url, |
57 const blink::WebScreenInfo& screen_info); | 55 const blink::WebScreenInfo& screen_info); |
58 virtual ~RenderWidgetFullscreenPepper(); | 56 virtual ~RenderWidgetFullscreenPepper(); |
59 | 57 |
60 // RenderWidget API. | 58 // RenderWidget API. |
61 virtual void DidInitiatePaint() OVERRIDE; | 59 virtual void DidInitiatePaint() OVERRIDE; |
62 virtual void DidFlushPaint() OVERRIDE; | 60 virtual void DidFlushPaint() OVERRIDE; |
63 virtual void Close() OVERRIDE; | 61 virtual void Close() OVERRIDE; |
(...skipping 16 matching lines...) Expand all Loading... |
80 blink::WebLayer* layer_; | 78 blink::WebLayer* layer_; |
81 | 79 |
82 scoped_ptr<MouseLockDispatcher> mouse_lock_dispatcher_; | 80 scoped_ptr<MouseLockDispatcher> mouse_lock_dispatcher_; |
83 | 81 |
84 DISALLOW_COPY_AND_ASSIGN(RenderWidgetFullscreenPepper); | 82 DISALLOW_COPY_AND_ASSIGN(RenderWidgetFullscreenPepper); |
85 }; | 83 }; |
86 | 84 |
87 } // namespace content | 85 } // namespace content |
88 | 86 |
89 #endif // CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ | 87 #endif // CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ |
OLD | NEW |