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/render_widget_fullscreen.h" | 11 #include "content/renderer/render_widget_fullscreen.h" |
11 #include "third_party/WebKit/public/web/WebWidget.h" | 12 #include "third_party/WebKit/public/web/WebWidget.h" |
12 #include "webkit/plugins/ppapi/fullscreen_container.h" | |
13 | 13 |
14 namespace webkit { | 14 namespace webkit { |
15 namespace ppapi { | 15 namespace ppapi { |
16 | 16 |
17 class PluginInstanceImpl; | 17 class PluginInstanceImpl; |
18 | 18 |
19 } // namespace ppapi | 19 } // namespace ppapi |
20 } // namespace webkit | 20 } // namespace webkit |
21 | 21 |
22 namespace WebKit { | 22 namespace WebKit { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 WebKit::WebLayer* layer_; | 95 WebKit::WebLayer* layer_; |
96 | 96 |
97 scoped_ptr<MouseLockDispatcher> mouse_lock_dispatcher_; | 97 scoped_ptr<MouseLockDispatcher> mouse_lock_dispatcher_; |
98 | 98 |
99 DISALLOW_COPY_AND_ASSIGN(RenderWidgetFullscreenPepper); | 99 DISALLOW_COPY_AND_ASSIGN(RenderWidgetFullscreenPepper); |
100 }; | 100 }; |
101 | 101 |
102 } // namespace content | 102 } // namespace content |
103 | 103 |
104 #endif // CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ | 104 #endif // CONTENT_RENDERER_RENDER_WIDGET_FULLSCREEN_PEPPER_H_ |
OLD | NEW |