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

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

Issue 18896003: [WIP] Migrate Fullscreen to use top layer instead of RenderFullScreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "core/platform/HistogramSupport.h" 47 #include "core/platform/HistogramSupport.h"
48 #include "core/platform/Logging.h" 48 #include "core/platform/Logging.h"
49 #include "core/platform/ScrollbarTheme.h" 49 #include "core/platform/ScrollbarTheme.h"
50 #include "core/platform/chromium/TraceEvent.h" 50 #include "core/platform/chromium/TraceEvent.h"
51 #include "core/platform/graphics/GraphicsLayer.h" 51 #include "core/platform/graphics/GraphicsLayer.h"
52 #include "core/platform/graphics/GraphicsLayerClient.h" 52 #include "core/platform/graphics/GraphicsLayerClient.h"
53 #include "core/platform/graphics/transforms/TransformState.h" 53 #include "core/platform/graphics/transforms/TransformState.h"
54 #include "core/rendering/HitTestResult.h" 54 #include "core/rendering/HitTestResult.h"
55 #include "core/rendering/RenderApplet.h" 55 #include "core/rendering/RenderApplet.h"
56 #include "core/rendering/RenderEmbeddedObject.h" 56 #include "core/rendering/RenderEmbeddedObject.h"
57 #include "core/rendering/RenderFullScreen.h"
58 #include "core/rendering/RenderGeometryMap.h" 57 #include "core/rendering/RenderGeometryMap.h"
59 #include "core/rendering/RenderIFrame.h" 58 #include "core/rendering/RenderIFrame.h"
60 #include "core/rendering/RenderLayerBacking.h" 59 #include "core/rendering/RenderLayerBacking.h"
61 #include "core/rendering/RenderReplica.h" 60 #include "core/rendering/RenderReplica.h"
62 #include "core/rendering/RenderVideo.h" 61 #include "core/rendering/RenderVideo.h"
63 #include "core/rendering/RenderView.h" 62 #include "core/rendering/RenderView.h"
64 #include "wtf/MemoryInstrumentationHashMap.h" 63 #include "wtf/MemoryInstrumentationHashMap.h"
65 #include "wtf/MemoryInstrumentationHashSet.h" 64 #include "wtf/MemoryInstrumentationHashSet.h"
66 #include "wtf/TemporaryChange.h" 65 #include "wtf/TemporaryChange.h"
67 66
(...skipping 2663 matching lines...) Expand 10 before | Expand all | Expand 10 after
2731 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); 2730 info.addMember(m_layerForScrollCorner, "layerForScrollCorner");
2732 #if ENABLE(RUBBER_BANDING) 2731 #if ENABLE(RUBBER_BANDING)
2733 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas"); 2732 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas");
2734 info.addMember(m_contentShadowLayer, "contentShadowLayer"); 2733 info.addMember(m_contentShadowLayer, "contentShadowLayer");
2735 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea"); 2734 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea");
2736 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea"); 2735 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea");
2737 #endif 2736 #endif
2738 } 2737 }
2739 2738
2740 } // namespace WebCore 2739 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698