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

Unified Diff: content/test/content_test_suite.cc

Issue 1248713002: ozone: ClientPixmapManager passes VGEM fd from browser to renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename to ClientNativePixmapFactory Created 5 years, 4 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/test/content_test_suite.cc
diff --git a/content/test/content_test_suite.cc b/content/test/content_test_suite.cc
index aaf664890c4a65a79188b6c3fae9fe49847fa6c1..9a80349ba248db03cd684b331018b63759ebbebe 100644
--- a/content/test/content_test_suite.cc
+++ b/content/test/content_test_suite.cc
@@ -36,7 +36,7 @@
#endif
#if defined(USE_OZONE)
-#include "ui/ozone/public/client_native_pixmap_factory.h"
+#include "content/test/test_client_native_pixmap_factory_ozone.h"
#endif
namespace content {
@@ -112,9 +112,8 @@ void ContentTestSuite::Initialize() {
#endif
#if defined(USE_OZONE)
if (!is_child_process) {
- client_native_pixmap_factory_ = ui::ClientNativePixmapFactory::Create();
ui::ClientNativePixmapFactory::SetInstance(
- client_native_pixmap_factory_.get());
+ TestClientNativePixmapFactory::GetInstance());
}
#endif
}

Powered by Google App Engine
This is Rietveld 408576698