| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 3480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3491 name = "Overflow Controls Host Layer"; | 3491 name = "Overflow Controls Host Layer"; |
| 3492 } else if (graphicsLayer == m_overflowControlsAncestorClippingLayer.get()) { | 3492 } else if (graphicsLayer == m_overflowControlsAncestorClippingLayer.get()) { |
| 3493 name = "Overflow Controls Ancestor Clipping Layer"; | 3493 name = "Overflow Controls Ancestor Clipping Layer"; |
| 3494 } else if (graphicsLayer == m_scrollingLayer.get()) { | 3494 } else if (graphicsLayer == m_scrollingLayer.get()) { |
| 3495 name = "Scrolling Layer"; | 3495 name = "Scrolling Layer"; |
| 3496 } else if (graphicsLayer == m_scrollingContentsLayer.get()) { | 3496 } else if (graphicsLayer == m_scrollingContentsLayer.get()) { |
| 3497 name = "Scrolling Contents Layer"; | 3497 name = "Scrolling Contents Layer"; |
| 3498 } else if (graphicsLayer == m_decorationOutlineLayer.get()) { | 3498 } else if (graphicsLayer == m_decorationOutlineLayer.get()) { |
| 3499 name = "Decoration Layer"; | 3499 name = "Decoration Layer"; |
| 3500 } else { | 3500 } else { |
| 3501 ASSERT_NOT_REACHED(); | 3501 NOTREACHED(); |
| 3502 } | 3502 } |
| 3503 | 3503 |
| 3504 return name; | 3504 return name; |
| 3505 } | 3505 } |
| 3506 | 3506 |
| 3507 } // namespace blink | 3507 } // namespace blink |
| OLD | NEW |