Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Side by Side Diff: content/plugin/webplugin_accelerated_surface_proxy_mac.cc

Issue 11231016: Move content's a plugin, ppapi_plugin, utility, and worker subdirectories to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #import <OpenGL/OpenGL.h> 5 #import <OpenGL/OpenGL.h>
6 6
7 #include "content/plugin/webplugin_accelerated_surface_proxy_mac.h" 7 #include "content/plugin/webplugin_accelerated_surface_proxy_mac.h"
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "content/plugin/webplugin_proxy.h" 11 #include "content/plugin/webplugin_proxy.h"
12 #include "ui/base/ui_base_switches.h" 12 #include "ui/base/ui_base_switches.h"
13 #include "ui/surface/accelerated_surface_mac.h" 13 #include "ui/surface/accelerated_surface_mac.h"
14 #include "ui/surface/io_surface_support_mac.h" 14 #include "ui/surface/io_surface_support_mac.h"
15 #include "ui/surface/transport_dib.h" 15 #include "ui/surface/transport_dib.h"
16 16
17 namespace content {
18
17 WebPluginAcceleratedSurfaceProxy* WebPluginAcceleratedSurfaceProxy::Create( 19 WebPluginAcceleratedSurfaceProxy* WebPluginAcceleratedSurfaceProxy::Create(
18 WebPluginProxy* plugin_proxy, 20 WebPluginProxy* plugin_proxy,
19 gfx::GpuPreference gpu_preference) { 21 gfx::GpuPreference gpu_preference) {
20 bool composited = !CommandLine::ForCurrentProcess()->HasSwitch( 22 bool composited = !CommandLine::ForCurrentProcess()->HasSwitch(
21 switches::kDisableCompositedCoreAnimationPlugins); 23 switches::kDisableCompositedCoreAnimationPlugins);
22 24
23 // Require IOSurface support for drawing Core Animation plugins. 25 // Require IOSurface support for drawing Core Animation plugins.
24 if (composited && !IOSurfaceSupport::Initialize()) 26 if (composited && !IOSurfaceSupport::Initialize())
25 return NULL; 27 return NULL;
26 28
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 return; 114 return;
113 115
114 surface_->SwapBuffers(); 116 surface_->SwapBuffers();
115 if (composited_) { 117 if (composited_) {
116 plugin_proxy_->AcceleratedPluginSwappedIOSurface(); 118 plugin_proxy_->AcceleratedPluginSwappedIOSurface();
117 } else { 119 } else {
118 plugin_proxy_->AcceleratedFrameBuffersDidSwap( 120 plugin_proxy_->AcceleratedFrameBuffersDidSwap(
119 window_handle_, surface_->GetSurfaceId()); 121 window_handle_, surface_->GetSurfaceId());
120 } 122 }
121 } 123 }
124
125 } // namespace content
OLDNEW
« no previous file with comments | « content/plugin/webplugin_accelerated_surface_proxy_mac.h ('k') | content/plugin/webplugin_delegate_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698