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

Unified Diff: content/renderer/gpu/mailbox_output_surface.h

Issue 12378053: Move Mailbox from cc to gpu, and its traits to gpu/ipc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ios hate Created 7 years, 10 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
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/gpu/mailbox_output_surface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/gpu/mailbox_output_surface.h
diff --git a/content/renderer/gpu/mailbox_output_surface.h b/content/renderer/gpu/mailbox_output_surface.h
index 0f5336abc8573d55596113d64222c824e635e4ce..745a81257a8fa966a6ef91e6a75245976f720133 100644
--- a/content/renderer/gpu/mailbox_output_surface.h
+++ b/content/renderer/gpu/mailbox_output_surface.h
@@ -47,14 +47,14 @@ class MailboxOutputSurface : public CompositorOutputSurface {
: texture_id(0) {}
TransferableFrame(uint32 texture_id,
- const cc::Mailbox& mailbox,
+ const gpu::Mailbox& mailbox,
const gfx::Size size)
: texture_id(texture_id),
mailbox(mailbox),
size(size) {}
uint32 texture_id;
- cc::Mailbox mailbox;
+ gpu::Mailbox mailbox;
gfx::Size size;
};
TransferableFrame current_backing_;
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/gpu/mailbox_output_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698