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

Side by Side Diff: content/browser/aura/no_transport_image_transport_factory.cc

Issue 23726015: All together now (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@screencast_cap
Patch Set: Created 7 years, 3 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/aura/no_transport_image_transport_factory.h" 5 #include "content/browser/aura/no_transport_image_transport_factory.h"
6 #include "ui/compositor/compositor.h" 6 #include "ui/compositor/compositor.h"
7 7
8 namespace content { 8 namespace content {
9 9
10 NoTransportImageTransportFactory::NoTransportImageTransportFactory( 10 NoTransportImageTransportFactory::NoTransportImageTransportFactory(
(...skipping 20 matching lines...) Expand all
31 return NULL; 31 return NULL;
32 } 32 }
33 33
34 scoped_refptr<ui::Texture> NoTransportImageTransportFactory::CreateOwnedTexture( 34 scoped_refptr<ui::Texture> NoTransportImageTransportFactory::CreateOwnedTexture(
35 const gfx::Size& size, 35 const gfx::Size& size,
36 float device_scale_factor, 36 float device_scale_factor,
37 unsigned int texture_id) { 37 unsigned int texture_id) {
38 return NULL; 38 return NULL;
39 } 39 }
40 40
41 scoped_ptr<SurfaceCapturer>
42 NoTransportImageTransportFactory::CreateOutputSurfaceCapturer(
43 ui::Compositor* compositor,
44 SurfaceCapturer::Client* client) {
45 return scoped_ptr<SurfaceCapturer>();
46 }
47
41 GLHelper* NoTransportImageTransportFactory::GetGLHelper() { return NULL; } 48 GLHelper* NoTransportImageTransportFactory::GetGLHelper() { return NULL; }
42 49
43 uint32 NoTransportImageTransportFactory::InsertSyncPoint() { return 0; } 50 uint32 NoTransportImageTransportFactory::InsertSyncPoint() { return 0; }
44 51
45 void NoTransportImageTransportFactory::WaitSyncPoint(uint32 sync_point) {} 52 void NoTransportImageTransportFactory::WaitSyncPoint(uint32 sync_point) {}
46 53
47 // We don't generate lost context events, so we don't need to keep track of 54 // We don't generate lost context events, so we don't need to keep track of
48 // observers 55 // observers
49 void NoTransportImageTransportFactory::AddObserver( 56 void NoTransportImageTransportFactory::AddObserver(
50 ImageTransportFactoryObserver* observer) {} 57 ImageTransportFactoryObserver* observer) {}
51 58
52 void NoTransportImageTransportFactory::RemoveObserver( 59 void NoTransportImageTransportFactory::RemoveObserver(
53 ImageTransportFactoryObserver* observer) {} 60 ImageTransportFactoryObserver* observer) {}
54 61
55 } // namespace content 62 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/aura/no_transport_image_transport_factory.h ('k') | content/browser/aura/reflector_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698