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

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

Issue 2039363003: FirstMeaningfulPaint UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 bool m_backfaceVisibility : 1; 326 bool m_backfaceVisibility : 1;
327 bool m_masksToBounds : 1; 327 bool m_masksToBounds : 1;
328 bool m_drawsContent : 1; 328 bool m_drawsContent : 1;
329 bool m_contentsVisible : 1; 329 bool m_contentsVisible : 1;
330 bool m_isRootForIsolatedGroup : 1; 330 bool m_isRootForIsolatedGroup : 1;
331 331
332 bool m_hasScrollParent : 1; 332 bool m_hasScrollParent : 1;
333 bool m_hasClipParent : 1; 333 bool m_hasClipParent : 1;
334 334
335 bool m_painted : 1; 335 bool m_painted : 1;
336 bool m_textPainted : 1;
337 bool m_imagePainted : 1;
338 336
339 bool m_isTrackingPaintInvalidations : 1; 337 bool m_isTrackingPaintInvalidations : 1;
340 338
341 GraphicsLayerPaintingPhase m_paintingPhase; 339 GraphicsLayerPaintingPhase m_paintingPhase;
342 340
343 Vector<GraphicsLayer*> m_children; 341 Vector<GraphicsLayer*> m_children;
344 GraphicsLayer* m_parent; 342 GraphicsLayer* m_parent;
345 343
346 GraphicsLayer* m_maskLayer; // Reference to mask layer. We don't own this. 344 GraphicsLayer* m_maskLayer; // Reference to mask layer. We don't own this.
347 GraphicsLayer* m_contentsClippingMaskLayer; // Reference to clipping mask la yer. We don't own this. 345 GraphicsLayer* m_contentsClippingMaskLayer; // Reference to clipping mask la yer. We don't own this.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 }; 377 };
380 378
381 } // namespace blink 379 } // namespace blink
382 380
383 #ifndef NDEBUG 381 #ifndef NDEBUG
384 // Outside the blink namespace for ease of invocation from gdb. 382 // Outside the blink namespace for ease of invocation from gdb.
385 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); 383 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*);
386 #endif 384 #endif
387 385
388 #endif // GraphicsLayer_h 386 #endif // GraphicsLayer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698