OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef RenderRemote_h |
| 6 #define RenderRemote_h |
| 7 |
| 8 #include "core/rendering/RenderReplaced.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class HTMLIFrameElement; |
| 13 |
| 14 class RenderRemote : public RenderReplaced { |
| 15 public: |
| 16 explicit RenderRemote(HTMLIFrameElement*); |
| 17 virtual ~RenderRemote(); |
| 18 |
| 19 private: |
| 20 virtual LayerType layerTypeRequired() const override { return NormalLayer; } |
| 21 virtual void paintReplaced(PaintInfo& paintInfo, const LayoutPoint& paintOff
set); |
| 22 }; |
| 23 |
| 24 } // namespace blink |
| 25 |
| 26 #endif // RenderRemote_h |
OLD | NEW |