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

Unified Diff: cc/output/software_output_device.h

Issue 15001027: [Aura] Added Support for rendering software compositor frames as cc::TextureLayers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Passed(&foo) instead for Passed(foo.Pass()). Created 7 years, 6 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 | « cc/output/software_frame_data.cc ('k') | cc/output/software_output_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/software_output_device.h
diff --git a/cc/output/software_output_device.h b/cc/output/software_output_device.h
index 9899629ee9662dc8fb66c0f9362a2d7ef07a08fe..fbada745a0aa1b7bd9ceed2fd4c628fc717fe8de 100644
--- a/cc/output/software_output_device.h
+++ b/cc/output/software_output_device.h
@@ -11,7 +11,6 @@
#include "ui/gfx/rect.h"
#include "ui/gfx/size.h"
#include "ui/gfx/vector2d.h"
-#include "ui/surface/transport_dib.h"
class SkBitmap;
class SkDevice;
@@ -39,7 +38,7 @@ class CC_EXPORT SoftwareOutputDevice {
gfx::Rect clip_rect);
// TODO(skaslev) Remove this after UberCompositor lands.
- virtual void ReclaimDIB(const TransportDIB::Id& id);
+ virtual void ReclaimSoftwareFrame(unsigned id);
protected:
gfx::Size viewport_size_;
@@ -47,6 +46,7 @@ class CC_EXPORT SoftwareOutputDevice {
skia::RefPtr<SkDevice> device_;
skia::RefPtr<SkCanvas> canvas_;
+ private:
DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDevice);
};
« no previous file with comments | « cc/output/software_frame_data.cc ('k') | cc/output/software_output_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698