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

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

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 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 | « public/web/WebDevToolsFrontendClient.h ('k') | public/web/WebFont.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 namespace blink { 51 namespace blink {
52 52
53 class Document; 53 class Document;
54 class DocumentType; 54 class DocumentType;
55 class WebAXObject; 55 class WebAXObject;
56 class WebDocumentType; 56 class WebDocumentType;
57 class WebElement; 57 class WebElement;
58 class WebFormElement; 58 class WebFormElement;
59 class WebElementCollection; 59 class WebElementCollection;
60 class WebNodeList;
61 class WebString; 60 class WebString;
62 class WebURL; 61 class WebURL;
63 62
64 // Provides readonly access to some properties of a DOM document. 63 // Provides readonly access to some properties of a DOM document.
65 class WebDocument : public WebNode { 64 class WebDocument : public WebNode {
66 public: 65 public:
67 WebDocument() { } 66 WebDocument() { }
68 WebDocument(const WebDocument& e) : WebNode(e) { } 67 WebDocument(const WebDocument& e) : WebNode(e) { }
69 68
70 WebDocument& operator=(const WebDocument& e) 69 WebDocument& operator=(const WebDocument& e)
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 #if BLINK_IMPLEMENTATION 150 #if BLINK_IMPLEMENTATION
152 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); 151 WebDocument(const PassRefPtrWillBeRawPtr<Document>&);
153 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); 152 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&);
154 operator PassRefPtrWillBeRawPtr<Document>() const; 153 operator PassRefPtrWillBeRawPtr<Document>() const;
155 #endif 154 #endif
156 }; 155 };
157 156
158 } // namespace blink 157 } // namespace blink
159 158
160 #endif 159 #endif
OLDNEW
« no previous file with comments | « public/web/WebDevToolsFrontendClient.h ('k') | public/web/WebFont.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698