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

Unified Diff: media/ozone/media_ozone_platform.cc

Issue 1610683003: Add initial SHM-only Wayland Ozone implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use base::SharedMemory, expand ObjectTraits macros, etc Created 4 years, 11 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 | ui/ozone/BUILD.gn » ('j') | ui/ozone/platform/wayland/wayland_display.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/ozone/media_ozone_platform.cc
diff --git a/media/ozone/media_ozone_platform.cc b/media/ozone/media_ozone_platform.cc
index f17d827b1e6fdfbea39640b3e029594dd5e478e6..c1c45864c28d67bf6034f2ded078ff6deb05b28e 100644
--- a/media/ozone/media_ozone_platform.cc
+++ b/media/ozone/media_ozone_platform.cc
@@ -57,6 +57,10 @@ MediaOzonePlatform* CreateMediaOzonePlatformHeadless() {
return new MediaOzonePlatformStub;
}
+MediaOzonePlatform* CreateMediaOzonePlatformWayland() {
rjkroege 2016/01/25 20:41:31 someday I suppose that we should have the same dyn
spang 2016/01/25 21:23:59 I'm not sure how we want to proceed here. Current
+ return new MediaOzonePlatformStub;
+}
+
MediaOzonePlatform::MediaOzonePlatform() {
CHECK(!instance_) << "There should only be a single MediaOzonePlatform.";
instance_ = this;
« no previous file with comments | « no previous file | ui/ozone/BUILD.gn » ('j') | ui/ozone/platform/wayland/wayland_display.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698