OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 HEADLESS_PUBLIC_WEB_DOCUMENT_H_ |
| 6 #define HEADLESS_PUBLIC_WEB_DOCUMENT_H_ |
| 7 |
| 8 #include "headless/public/web_node.h" |
| 9 |
| 10 namespace blink { |
| 11 class WebDocument; |
| 12 } |
| 13 |
| 14 namespace headless { |
| 15 |
| 16 class WebDocument : public WebNode { |
| 17 public: |
| 18 WebDocument(const blink::WebDocument& web_document); |
| 19 |
| 20 protected: |
| 21 blink::WebDocument& web_document(); |
| 22 const blink::WebDocument& web_document() const; |
| 23 }; |
| 24 |
| 25 } // namespace headless |
| 26 |
| 27 #endif // HEADLESS_PUBLIC_WEB_DOCUMENT_H_ |
OLD | NEW |