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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/GraphicsLayer.h

Issue 2289833002: Disable clipping on root scroller's ancestors. (Closed)
Patch Set: Created 4 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 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 317
318 Color m_backgroundColor; 318 Color m_backgroundColor;
319 float m_opacity; 319 float m_opacity;
320 320
321 WebBlendMode m_blendMode; 321 WebBlendMode m_blendMode;
322 322
323 bool m_hasTransformOrigin : 1; 323 bool m_hasTransformOrigin : 1;
324 bool m_contentsOpaque : 1; 324 bool m_contentsOpaque : 1;
325 bool m_shouldFlattenTransform: 1; 325 bool m_shouldFlattenTransform: 1;
326 bool m_backfaceVisibility : 1; 326 bool m_backfaceVisibility : 1;
327 bool m_masksToBounds : 1;
328 bool m_drawsContent : 1; 327 bool m_drawsContent : 1;
329 bool m_contentsVisible : 1; 328 bool m_contentsVisible : 1;
330 bool m_isRootForIsolatedGroup : 1; 329 bool m_isRootForIsolatedGroup : 1;
331 330
332 bool m_hasScrollParent : 1; 331 bool m_hasScrollParent : 1;
333 bool m_hasClipParent : 1; 332 bool m_hasClipParent : 1;
334 333
335 bool m_painted : 1; 334 bool m_painted : 1;
336 335
337 bool m_isTrackingPaintInvalidations : 1; 336 bool m_isTrackingPaintInvalidations : 1;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 }; 376 };
378 377
379 } // namespace blink 378 } // namespace blink
380 379
381 #ifndef NDEBUG 380 #ifndef NDEBUG
382 // Outside the blink namespace for ease of invocation from gdb. 381 // Outside the blink namespace for ease of invocation from gdb.
383 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); 382 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*);
384 #endif 383 #endif
385 384
386 #endif // GraphicsLayer_h 385 #endif // GraphicsLayer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698