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

Side by Side Diff: Source/core/rendering/RenderLayerCompositor.h

Issue 13959008: Remove NonCompositedContentHost (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Adding back LCD text workaround Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 bool hasAnyAdditionalCompositedLayers(const RenderLayer* rootLayer) const; 284 bool hasAnyAdditionalCompositedLayers(const RenderLayer* rootLayer) const;
285 285
286 void ensureRootLayer(); 286 void ensureRootLayer();
287 void destroyRootLayer(); 287 void destroyRootLayer();
288 288
289 void attachRootLayer(RootLayerAttachment); 289 void attachRootLayer(RootLayerAttachment);
290 void detachRootLayer(); 290 void detachRootLayer();
291 291
292 bool isMainFrame() const; 292 bool isMainFrame() const;
293 293
294 void rootLayerAttachmentChanged();
295
296 void updateOverflowControlsLayers(); 294 void updateOverflowControlsLayers();
297 295
298 void notifyIFramesOfCompositingChange(); 296 void notifyIFramesOfCompositingChange();
299 297
300 Page* page() const; 298 Page* page() const;
301 299
302 GraphicsLayerFactory* graphicsLayerFactory() const; 300 GraphicsLayerFactory* graphicsLayerFactory() const;
303 ScrollingCoordinator* scrollingCoordinator() const; 301 ScrollingCoordinator* scrollingCoordinator() const;
304 302
305 // Whether a running transition or animation enforces the need for a composi ting layer. 303 // Whether a running transition or animation enforces the need for a composi ting layer.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 int m_secondaryCompositedLayerCount; // count of layers that have to be comp osited because of stacking or overlap. 383 int m_secondaryCompositedLayerCount; // count of layers that have to be comp osited because of stacking or overlap.
386 double m_obligatoryBackingStoreBytes; 384 double m_obligatoryBackingStoreBytes;
387 double m_secondaryBackingStoreBytes; 385 double m_secondaryBackingStoreBytes;
388 #endif 386 #endif
389 }; 387 };
390 388
391 389
392 } // namespace WebCore 390 } // namespace WebCore
393 391
394 #endif // RenderLayerCompositor_h 392 #endif // RenderLayerCompositor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698