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

Side by Side Diff: webkit/glue/plugins/coregraphics_private_symbols_mac.h

Issue 6012002: Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi and put... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_GLUE_PLUGINS_COREGRAPHICS_PRIVATE_SYMBOLS_MAC_H_
6 #define WEBKIT_GLUE_PLUGINS_COREGRAPHICS_PRIVATE_SYMBOLS_MAC_H_
7
8 // These are CoreGraphics SPI, verified to exist in both 10.5 and 10.6.
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 // Copies the contents of the window with id |wid| into the given rect in the
15 // given context
16 OSStatus CGContextCopyWindowCaptureContentsToRect(
17 CGContextRef, CGRect, int cid, int wid, int unknown);
18
19 // Returns the connection ID we need for the third argument to
20 // CGContextCopyWindowCaptureContentsToRect
21 int _CGSDefaultConnection(void);
22
23 #ifdef __cplusplus
24 } // extern "C"
25 #endif
26
27 #endif // WEBKIT_GLUE_PLUGINS_COREGRAPHICS_PRIVATE_SYMBOLS_MAC_H_
OLDNEW
« no previous file with comments | « webkit/glue/plugins/carbon_plugin_window_tracker_mac.cc ('k') | webkit/glue/plugins/default_plugin_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698