diff options
author | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 16:45:33 +0000 |
---|---|---|
committer | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 16:45:33 +0000 |
commit | 44ce0b1adb867c77d02c45c2eb2a6c7ee3471167 (patch) | |
tree | 44e85d5ce38d7c5f15381c0bce2ba42dbd2715e9 /chrome/common/render_messages_internal.h | |
parent | c1aeaac2015e93e1168453d4de29619c43fda669 (diff) | |
download | chromium_src-44ce0b1adb867c77d02c45c2eb2a6c7ee3471167.zip chromium_src-44ce0b1adb867c77d02c45c2eb2a6c7ee3471167.tar.gz chromium_src-44ce0b1adb867c77d02c45c2eb2a6c7ee3471167.tar.bz2 |
Rename uses of GPUPlugin in class names and IPC to AcceleratedSurface.
BUG=none
TEST=Purely cleanup, no functional changes.
Review URL: http://codereview.chromium.org/855003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41435 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 6f9158a..c20fd88 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -1900,34 +1900,34 @@ IPC_BEGIN_MESSAGES(ViewHost) gfx::PluginWindowHandle /* id */) // This message, used on Mac OS X 10.5 and earlier (no IOSurface support), - // is sent from the renderer to the browser on behalf of the GPU plugin - // to indicate that a new backing store was allocated for that GPU plugin + // is sent from the renderer to the browser on behalf of the plug-in + // to indicate that a new backing store was allocated for that plug-in // instance. - IPC_MESSAGE_ROUTED4(ViewHostMsg_GPUPluginSetTransportDIB, + IPC_MESSAGE_ROUTED4(ViewHostMsg_AcceleratedSurfaceSetTransportDIB, gfx::PluginWindowHandle /* window */, int32 /* width */, int32 /* height */, TransportDIB::Handle /* handle for the DIB */) // This message, used on Mac OS X 10.6 and later (where IOSurface is - // supported), is sent from the renderer to the browser on behalf - // of the GPU plugin to indicate that a new backing store was - // allocated for that GPU plugin instance. + // supported), is sent from the renderer to the browser on behalf of the + // plug-in to indicate that a new backing store was allocated for that + // plug-in instance. // - // NOTE: the original intent was to pass a mach port as the - // IOSurface identifier but it looks like that will be a lot of - // work. For now we pass an ID from IOSurfaceGetID. - IPC_MESSAGE_ROUTED4(ViewHostMsg_GPUPluginSetIOSurface, + // NOTE: the original intent was to pass a mach port as the IOSurface + // identifier but it looks like that will be a lot of work. For now we pass an + // ID from IOSurfaceGetID. + IPC_MESSAGE_ROUTED4(ViewHostMsg_AcceleratedSurfaceSetIOSurface, gfx::PluginWindowHandle /* window */, int32 /* width */, int32 /* height */, uint64 /* identifier for IOSurface */) - // This message notifies the browser process that the GPU plugin + // This message notifies the browser process that the plug-in // swapped the buffers associated with the given "window", which - // should cause the browser to redraw the various GPU plugins' + // should cause the browser to redraw the various plug-ins' // contents. - IPC_MESSAGE_ROUTED1(ViewHostMsg_GPUPluginBuffersSwapped, + IPC_MESSAGE_ROUTED1(ViewHostMsg_AcceleratedSurfaceBuffersSwapped, gfx::PluginWindowHandle /* window */) #endif |