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

Unified Diff: content/renderer/browser_plugin/browser_plugin.h

Issue 12440005: Use gpu::Mailbox in IPCs instead of std::string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/browser_plugin/browser_plugin.h
diff --git a/content/renderer/browser_plugin/browser_plugin.h b/content/renderer/browser_plugin/browser_plugin.h
index 8e51a5bd848ffea964c7e33e099c83c137509a18..0294231d955658913f120fbfbe43c8ec9846266e 100644
--- a/content/renderer/browser_plugin/browser_plugin.h
+++ b/content/renderer/browser_plugin/browser_plugin.h
@@ -26,6 +26,10 @@ struct BrowserPluginHostMsg_ResizeGuest_Params;
struct BrowserPluginMsg_LoadCommit_Params;
struct BrowserPluginMsg_UpdateRect_Params;
+namespace gpu {
+struct Mailbox;
+}
+
namespace content {
class BrowserPluginCompositingHelper;
@@ -309,7 +313,7 @@ class CONTENT_EXPORT BrowserPlugin :
void OnAdvanceFocus(int instance_id, bool reverse);
void OnBuffersSwapped(int instance_id,
const gfx::Size& size,
- std::string mailbox_name,
+ gpu::Mailbox mailbox_name,
int gpu_route_id,
int gpu_host_id);
void OnGuestContentWindowReady(int instance_id,

Powered by Google App Engine
This is Rietveld 408576698