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

Side by Side Diff: chrome/plugin/webplugin_proxy.h

Issue 199105: Continue with the FreeBSD port - this version builds and links, though... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 3 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
« no previous file with comments | « chrome/plugin/plugin_thread.cc ('k') | chrome/plugin/webplugin_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_PLUGIN_WEBPLUGIN_PROXY_H__ 5 #ifndef CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__
6 #define CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__ 6 #define CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/hash_tables.h" 10 #include "base/hash_tables.h"
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 // These hold the bitmap of the background image. 182 // These hold the bitmap of the background image.
183 ScopedHandle background_shared_section_; 183 ScopedHandle background_shared_section_;
184 ScopedBitmap background_bitmap_; 184 ScopedBitmap background_bitmap_;
185 ScopedHDC background_hdc_; 185 ScopedHDC background_hdc_;
186 #elif defined(OS_MACOSX) 186 #elif defined(OS_MACOSX)
187 scoped_ptr<TransportDIB> windowless_dib_; 187 scoped_ptr<TransportDIB> windowless_dib_;
188 scoped_ptr<TransportDIB> background_dib_; 188 scoped_ptr<TransportDIB> background_dib_;
189 scoped_cftyperef<CGContextRef> windowless_context_; 189 scoped_cftyperef<CGContextRef> windowless_context_;
190 scoped_cftyperef<CGContextRef> background_context_; 190 scoped_cftyperef<CGContextRef> background_context_;
191 #elif defined(OS_LINUX) 191 #elif defined(USE_X11)
192 scoped_ptr<TransportDIB> windowless_dib_; 192 scoped_ptr<TransportDIB> windowless_dib_;
193 scoped_ptr<TransportDIB> background_dib_; 193 scoped_ptr<TransportDIB> background_dib_;
194 scoped_ptr<skia::PlatformCanvas> windowless_canvas_; 194 scoped_ptr<skia::PlatformCanvas> windowless_canvas_;
195 scoped_ptr<skia::PlatformCanvas> background_canvas_; 195 scoped_ptr<skia::PlatformCanvas> background_canvas_;
196 #endif 196 #endif
197 197
198 ScopedRunnableMethodFactory<WebPluginProxy> runnable_method_factory_; 198 ScopedRunnableMethodFactory<WebPluginProxy> runnable_method_factory_;
199 }; 199 };
200 200
201 #endif // CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__ 201 #endif // CHROME_PLUGIN_PLUGIN_WEBPLUGIN_PROXY_H__
OLDNEW
« no previous file with comments | « chrome/plugin/plugin_thread.cc ('k') | chrome/plugin/webplugin_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698