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

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

Issue 138833005: Replace RenderFullScreen with top layer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: protect only for top layer changes Created 6 years, 10 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "core/frame/FrameView.h" 44 #include "core/frame/FrameView.h"
45 #include "core/page/Page.h" 45 #include "core/page/Page.h"
46 #include "core/frame/Settings.h" 46 #include "core/frame/Settings.h"
47 #include "core/frame/animation/AnimationController.h" 47 #include "core/frame/animation/AnimationController.h"
48 #include "core/page/scrolling/ScrollingConstraints.h" 48 #include "core/page/scrolling/ScrollingConstraints.h"
49 #include "core/page/scrolling/ScrollingCoordinator.h" 49 #include "core/page/scrolling/ScrollingCoordinator.h"
50 #include "core/rendering/CompositedLayerMapping.h" 50 #include "core/rendering/CompositedLayerMapping.h"
51 #include "core/rendering/HitTestResult.h" 51 #include "core/rendering/HitTestResult.h"
52 #include "core/rendering/RenderApplet.h" 52 #include "core/rendering/RenderApplet.h"
53 #include "core/rendering/RenderEmbeddedObject.h" 53 #include "core/rendering/RenderEmbeddedObject.h"
54 #include "core/rendering/RenderFullScreen.h"
55 #include "core/rendering/RenderGeometryMap.h" 54 #include "core/rendering/RenderGeometryMap.h"
56 #include "core/rendering/RenderIFrame.h" 55 #include "core/rendering/RenderIFrame.h"
57 #include "core/rendering/RenderLayerStackingNode.h" 56 #include "core/rendering/RenderLayerStackingNode.h"
58 #include "core/rendering/RenderLayerStackingNodeIterator.h" 57 #include "core/rendering/RenderLayerStackingNodeIterator.h"
59 #include "core/rendering/RenderReplica.h" 58 #include "core/rendering/RenderReplica.h"
60 #include "core/rendering/RenderVideo.h" 59 #include "core/rendering/RenderVideo.h"
61 #include "core/rendering/RenderView.h" 60 #include "core/rendering/RenderView.h"
62 #include "platform/OverscrollTheme.h" 61 #include "platform/OverscrollTheme.h"
63 #include "platform/TraceEvent.h" 62 #include "platform/TraceEvent.h"
64 #include "platform/geometry/TransformState.h" 63 #include "platform/geometry/TransformState.h"
(...skipping 2574 matching lines...) Expand 10 before | Expand all | Expand 10 after
2639 } else if (graphicsLayer == m_scrollLayer.get()) { 2638 } else if (graphicsLayer == m_scrollLayer.get()) {
2640 name = "Frame Scrolling Layer"; 2639 name = "Frame Scrolling Layer";
2641 } else { 2640 } else {
2642 ASSERT_NOT_REACHED(); 2641 ASSERT_NOT_REACHED();
2643 } 2642 }
2644 2643
2645 return name; 2644 return name;
2646 } 2645 }
2647 2646
2648 } // namespace WebCore 2647 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698