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

Side by Side Diff: Source/core/rendering/RenderLayerModelObject.cpp

Issue 88863002: Land layer squashing behind a flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed bogus asserts Created 7 years 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
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com) 5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
7 * Copyright (C) 2010, 2012 Google Inc. All rights reserved. 7 * Copyright (C) 2010, 2012 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 CompositedLayerMappingPtr RenderLayerModelObject::compositedLayerMapping() const 202 CompositedLayerMappingPtr RenderLayerModelObject::compositedLayerMapping() const
203 { 203 {
204 return m_layer ? m_layer->compositedLayerMapping() : 0; 204 return m_layer ? m_layer->compositedLayerMapping() : 0;
205 } 205 }
206 206
207 bool RenderLayerModelObject::hasCompositedLayerMapping() const 207 bool RenderLayerModelObject::hasCompositedLayerMapping() const
208 { 208 {
209 return m_layer ? m_layer->hasCompositedLayerMapping() : false; 209 return m_layer ? m_layer->hasCompositedLayerMapping() : false;
210 } 210 }
211 211
212 CompositedLayerMapping* RenderLayerModelObject::groupedMapping() const
213 {
214 return m_layer ? m_layer->groupedMapping() : 0;
215 }
216
212 } // namespace WebCore 217 } // namespace WebCore
213 218
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerModelObject.h ('k') | Source/core/rendering/RenderLayerRepainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698