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

Unified Diff: ui/gfx/ozone/impl/file_surface_factory.cc

Issue 102563005: [Ozone] Rename GetVSyncProvider to CreateVSyncProvider (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win Created 6 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 | « ui/gfx/ozone/impl/file_surface_factory.h ('k') | ui/gfx/ozone/surface_factory_ozone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/ozone/impl/file_surface_factory.cc
diff --git a/ui/gfx/ozone/impl/file_surface_factory.cc b/ui/gfx/ozone/impl/file_surface_factory.cc
index 9d34f7f95a365d5010e6a7f4e23b47c7f4e652fa..1f440dbddf94b4edb4cc80b98a218fcd0781ff56 100644
--- a/ui/gfx/ozone/impl/file_surface_factory.cc
+++ b/ui/gfx/ozone/impl/file_surface_factory.cc
@@ -12,6 +12,7 @@
#include "third_party/skia/include/core/SkBitmapDevice.h"
#include "third_party/skia/include/core/SkDevice.h"
#include "ui/gfx/codec/png_codec.h"
+#include "ui/gfx/vsync_provider.h"
namespace {
@@ -89,8 +90,9 @@ SkCanvas* FileSurfaceFactory::GetCanvasForWidget(AcceleratedWidget w) {
return canvas_.get();
}
-VSyncProvider* FileSurfaceFactory::GetVSyncProvider(AcceleratedWidget w) {
- return NULL;
+scoped_ptr<VSyncProvider> FileSurfaceFactory::CreateVSyncProvider(
+ AcceleratedWidget w) {
+ return scoped_ptr<VSyncProvider>();
}
} // namespace gfx
« no previous file with comments | « ui/gfx/ozone/impl/file_surface_factory.h ('k') | ui/gfx/ozone/surface_factory_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698