| Index: content/renderer/render_widget_fullscreen_pepper.cc
|
| ===================================================================
|
| --- content/renderer/render_widget_fullscreen_pepper.cc (revision 163007)
|
| +++ content/renderer/render_widget_fullscreen_pepper.cc (working copy)
|
| @@ -43,6 +43,8 @@
|
| using WebKit::WebWidget;
|
| using WebKit::WGC3Dintptr;
|
|
|
| +namespace content {
|
| +
|
| namespace {
|
|
|
| // See third_party/WebKit/Source/WebCore/dom/WheelEvent.h.
|
| @@ -435,7 +437,7 @@
|
| webkit::ppapi::PluginDelegate::PlatformContext3D*
|
| RenderWidgetFullscreenPepper::CreateContext3D() {
|
| #ifdef ENABLE_GPU
|
| - return new content::PlatformContext3DImpl(this);
|
| + return new PlatformContext3DImpl(this);
|
| #else
|
| return NULL;
|
| #endif
|
| @@ -443,7 +445,7 @@
|
|
|
| void RenderWidgetFullscreenPepper::ReparentContext(
|
| webkit::ppapi::PluginDelegate::PlatformContext3D* context) {
|
| - static_cast<content::PlatformContext3DImpl*>(context)->SetParentContext(this);
|
| + static_cast<PlatformContext3DImpl*>(context)->SetParentContext(this);
|
| }
|
|
|
| MouseLockDispatcher* RenderWidgetFullscreenPepper::GetMouseLockDispatcher() {
|
| @@ -542,7 +544,7 @@
|
| attributes,
|
| true /* bind generates resources */,
|
| active_url_,
|
| - content::CAUSE_FOR_GPU_LAUNCH_RENDERWIDGETFULLSCREENPEPPER_CREATECONTEXT);
|
| + CAUSE_FOR_GPU_LAUNCH_RENDERWIDGETFULLSCREENPEPPER_CREATECONTEXT);
|
| if (!context_)
|
| return;
|
|
|
| @@ -680,3 +682,5 @@
|
| return NULL;
|
| return context_;
|
| }
|
| +
|
| +} // namespace content
|
|
|