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

Side by Side Diff: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp

Issue 2758683002: Replace ASSERT_NOT_REACHED with NOTREACHED in core/layout/ (Closed)
Patch Set: Rebase with latest Created 3 years, 9 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 /* 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698