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

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

Issue 6672048: Move plugin code to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_PLUGIN_WEBPLUGIN_ACCELERATED_SURFACE_PROXY_H_ 5 #ifndef CONTENT_PLUGIN_WEBPLUGIN_ACCELERATED_SURFACE_PROXY_H_
6 #define CHROME_PLUGIN_WEBPLUGIN_ACCELERATED_SURFACE_PROXY_H_ 6 #define CONTENT_PLUGIN_WEBPLUGIN_ACCELERATED_SURFACE_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include "webkit/plugins/npapi/webplugin_accelerated_surface_mac.h" 9 #include "webkit/plugins/npapi/webplugin_accelerated_surface_mac.h"
10 10
11 class WebPluginProxy; 11 class WebPluginProxy;
12 class AcceleratedSurface; 12 class AcceleratedSurface;
13 13
14 // Out-of-process implementation of WebPluginAcceleratedSurface that proxies 14 // Out-of-process implementation of WebPluginAcceleratedSurface that proxies
15 // calls through a WebPluginProxy. 15 // calls through a WebPluginProxy.
16 class WebPluginAcceleratedSurfaceProxy 16 class WebPluginAcceleratedSurfaceProxy
(...skipping 12 matching lines...) Expand all
29 virtual void EndDrawing(); 29 virtual void EndDrawing();
30 30
31 private: 31 private:
32 WebPluginProxy* plugin_proxy_; // Weak ref. 32 WebPluginProxy* plugin_proxy_; // Weak ref.
33 gfx::PluginWindowHandle window_handle_; 33 gfx::PluginWindowHandle window_handle_;
34 AcceleratedSurface* surface_; 34 AcceleratedSurface* surface_;
35 35
36 DISALLOW_COPY_AND_ASSIGN(WebPluginAcceleratedSurfaceProxy); 36 DISALLOW_COPY_AND_ASSIGN(WebPluginAcceleratedSurfaceProxy);
37 }; 37 };
38 38
39 #endif // CHROME_PLUGIN_WEBPLUGIN_ACCELERATED_SURFACE_PROXY_H_ 39 #endif // CONTENT_PLUGIN_WEBPLUGIN_ACCELERATED_SURFACE_PROXY_H_
OLDNEW
« no previous file with comments | « content/plugin/plugin_thread.cc ('k') | content/plugin/webplugin_accelerated_surface_proxy_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698