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

Side by Side Diff: webkit/compositor_bindings/WebDelegatedRendererLayerImpl.cpp

Issue 10916307: Add the ubercomp DelegatedRendererLayer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use OwnPtrVector Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2012 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 "config.h"
6 #include "WebDelegatedRendererLayerImpl.h"
7
8 #include "DelegatedRendererLayerChromium.h"
9
10 using namespace cc;
11
12 namespace WebKit {
13
14 WebDelegatedRendererLayerImpl::WebDelegatedRendererLayerImpl()
15 : m_layer(adoptPtr(new WebLayerImpl(DelegatedRendererLayerChromium::create() )))
16 {
17 }
18
19 WebDelegatedRendererLayerImpl::~WebDelegatedRendererLayerImpl()
20 {
21 }
22
23 WebLayer* WebDelegatedRendererLayerImpl::layer()
24 {
25 return m_layer.get();
26 }
27
28 } // namespace WebKit
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/WebDelegatedRendererLayerImpl.h ('k') | webkit/compositor_bindings/compositor_bindings.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698