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

Unified Diff: content/renderer/renderer_main.cc

Issue 2705333006: Move client_native_pixmap_factory.h from ui/ozone/public to ui/gfx (Closed)
Patch Set: Fix trace Created 3 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 | « content/browser/browser_main_loop.cc ('k') | gpu/ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_main.cc
diff --git a/content/renderer/renderer_main.cc b/content/renderer/renderer_main.cc
index dfc51357dd710d79903f4b02f64e83260965a293..59897a5060785b774733cfe10bcef6b73aae593f 100644
--- a/content/renderer/renderer_main.cc
+++ b/content/renderer/renderer_main.cc
@@ -59,7 +59,7 @@
#endif
#if defined(USE_OZONE)
-#include "ui/ozone/public/client_native_pixmap_factory.h"
+#include "ui/ozone/public/client_native_pixmap_factory_ozone.h"
#endif
namespace content {
@@ -119,7 +119,7 @@ int RendererMain(const MainFunctionParams& parameters) {
#endif
#if defined(USE_OZONE)
- g_pixmap_factory.Get() = ui::ClientNativePixmapFactory::Create();
+ g_pixmap_factory.Get() = ui::CreateClientNativePixmapFactoryOzone();
ui::ClientNativePixmapFactory::SetInstance(g_pixmap_factory.Get().get());
#endif
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | gpu/ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698