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

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

Issue 1508223005: Client side display item cache flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ScrollbarTheme
Patch Set: Created 4 years, 7 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 352
353 OwnPtr<ContentLayerDelegate> m_contentLayerDelegate; 353 OwnPtr<ContentLayerDelegate> m_contentLayerDelegate;
354 354
355 WeakPersistent<ScrollableArea> m_scrollableArea; 355 WeakPersistent<ScrollableArea> m_scrollableArea;
356 GraphicsLayerDebugInfo m_debugInfo; 356 GraphicsLayerDebugInfo m_debugInfo;
357 int m_3dRenderingContext; 357 int m_3dRenderingContext;
358 358
359 OwnPtr<PaintController> m_paintController; 359 OwnPtr<PaintController> m_paintController;
360 360
361 IntRect m_previousInterestRect; 361 IntRect m_previousInterestRect;
362
363 DISPLAY_ITEM_CACHE_STATUS_IMPLEMENTATION
362 }; 364 };
363 365
364 } // namespace blink 366 } // namespace blink
365 367
366 #ifndef NDEBUG 368 #ifndef NDEBUG
367 // Outside the blink namespace for ease of invocation from gdb. 369 // Outside the blink namespace for ease of invocation from gdb.
368 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); 370 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*);
369 #endif 371 #endif
370 372
371 #endif // GraphicsLayer_h 373 #endif // GraphicsLayer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698