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

Side by Side Diff: gpu/ipc/service/gpu_vsync_provider_posix.cc

Issue 2681033011: Changed GpuVSyncProvider to implement gfx::VSyncProvider (Closed)
Patch Set: Addressed CR feedback Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "gpu/ipc/service/gpu_vsync_provider.h"
6
7 namespace gpu {
8
9 /* static */
10 std::unique_ptr<GpuVSyncProvider> GpuVSyncProvider::Create(
11 const VSyncCallback& callback,
12 SurfaceHandle surface_handle) {
13 return std::unique_ptr<GpuVSyncProvider>();
14 }
15
16 GpuVSyncProvider::~GpuVSyncProvider() = default;
17
18 void GpuVSyncProvider::EnableVSync(bool enabled) {
19 NOTREACHED();
20 }
21
22 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/ipc/service/gpu_vsync_provider.h ('k') | gpu/ipc/service/gpu_vsync_provider_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698