Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
|
Xiaocheng
2017/03/30 18:02:56
Please add this file to editing/BUILD.gn
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "core/editing/markers/RenderedDocumentMarker.h" | |
| 6 | |
| 7 namespace blink { | |
| 8 | |
| 9 RenderedDocumentMarker* RenderedDocumentMarker::clone() const { | |
| 10 return new RenderedDocumentMarker(*this); | |
| 11 } | |
| 12 | |
| 13 } // namespace blink | |
| OLD | NEW |