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

Side by Side Diff: third_party/WebKit/public/web/WebDocument.h

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 33
34 #include "WebDraggableRegion.h" 34 #include "WebDraggableRegion.h"
35 #include "WebExceptionCode.h" 35 #include "WebExceptionCode.h"
36 #include "WebFrame.h" 36 #include "WebFrame.h"
37 #include "WebNode.h" 37 #include "WebNode.h"
38 #include "public/platform/WebColor.h" 38 #include "public/platform/WebColor.h"
39 #include "public/platform/WebReferrerPolicy.h" 39 #include "public/platform/WebReferrerPolicy.h"
40 #include "public/platform/WebSecurityOrigin.h" 40 #include "public/platform/WebSecurityOrigin.h"
41 #include "public/platform/WebVector.h" 41 #include "public/platform/WebVector.h"
42 42
43 #if BLINK_IMPLEMENTATION
44 namespace WTF {
45 template <typename T>
46 class PassRefPtr;
47 }
48 #endif
49
50 namespace v8 { 43 namespace v8 {
51 class Value; 44 class Value;
52 template <class T> 45 template <class T>
53 class Local; 46 class Local;
54 } 47 }
55 48
56 namespace blink { 49 namespace blink {
57 50
58 class Document; 51 class Document;
59 class DocumentType;
60 class WebAXObject; 52 class WebAXObject;
61 class WebElement; 53 class WebElement;
62 class WebFormElement; 54 class WebFormElement;
63 class WebElementCollection; 55 class WebElementCollection;
64 class WebString; 56 class WebString;
65 class WebURL; 57 class WebURL;
66 struct WebDistillabilityFeatures; 58 struct WebDistillabilityFeatures;
67 59
68 // Provides readonly access to some properties of a DOM document. 60 // Provides readonly access to some properties of a DOM document.
69 class WebDocument : public WebNode { 61 class WebDocument : public WebNode {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 BLINK_EXPORT WebDocument& operator=(Document*); 150 BLINK_EXPORT WebDocument& operator=(Document*);
159 BLINK_EXPORT operator Document*() const; 151 BLINK_EXPORT operator Document*() const;
160 #endif 152 #endif
161 }; 153 };
162 154
163 DECLARE_WEB_NODE_TYPE_CASTS(WebDocument); 155 DECLARE_WEB_NODE_TYPE_CASTS(WebDocument);
164 156
165 } // namespace blink 157 } // namespace blink
166 158
167 #endif 159 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebDevToolsFrontend.h ('k') | third_party/WebKit/public/web/WebElementCollection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698