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

Side by Side Diff: headless/public/web_document.h

Issue 1430673002: Headless demo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better javascript Created 5 years 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
« no previous file with comments | « headless/public/web_contents.h ('k') | headless/public/web_element.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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/headless_export.h"
9 #include "headless/public/web_node.h"
10
11 namespace blink {
12 class WebDocument;
13 }
14
15 namespace headless {
16
17 class HEADLESS_EXPORT WebDocument : public WebNode {
18 public:
19 explicit WebDocument(const blink::WebDocument& web_document);
20
21 protected:
22 blink::WebDocument& web_document();
23 const blink::WebDocument& web_document() const;
24 };
25
26 } // namespace headless
27
28 #endif // HEADLESS_PUBLIC_WEB_DOCUMENT_H_
OLDNEW
« no previous file with comments | « headless/public/web_contents.h ('k') | headless/public/web_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698