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

Unified Diff: content/browser/compositor/software_output_device_ozone.h

Issue 205433002: ozone: Add OzoneSurface object that is owned by compositor, GLSurface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
« no previous file with comments | « no previous file | content/browser/compositor/software_output_device_ozone.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/compositor/software_output_device_ozone.h
diff --git a/content/browser/compositor/software_output_device_ozone.h b/content/browser/compositor/software_output_device_ozone.h
index befd3953934fb2cda4105689d9446066bb33cb71..46014e6621500ffd19e54361aa01429a61715180 100644
--- a/content/browser/compositor/software_output_device_ozone.h
+++ b/content/browser/compositor/software_output_device_ozone.h
@@ -13,6 +13,10 @@ namespace ui {
class Compositor;
}
+namespace gfx {
+class SurfaceOzone;
+}
+
namespace content {
// Ozone implementation which relies on software rendering. Ozone will present
@@ -31,7 +35,7 @@ class CONTENT_EXPORT SoftwareOutputDeviceOzone
private:
ui::Compositor* compositor_;
- gfx::AcceleratedWidget realized_widget_;
+ scoped_ptr<gfx::SurfaceOzone> surface_ozone_;
DISALLOW_COPY_AND_ASSIGN(SoftwareOutputDeviceOzone);
};
« no previous file with comments | « no previous file | content/browser/compositor/software_output_device_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698