| OLD | NEW |
| 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 26 matching lines...) Expand all Loading... |
| 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 namespace v8 { | 43 namespace v8 { |
| 44 class Value; | 44 class Value; |
| 45 template <class T> | 45 template <class T> |
| 46 class Local; | 46 class Local; |
| 47 } | 47 } // namespace v8 |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class Document; | 51 class Document; |
| 52 class WebElement; | 52 class WebElement; |
| 53 class WebFormElement; | 53 class WebFormElement; |
| 54 class WebElementCollection; | 54 class WebElementCollection; |
| 55 class WebString; | 55 class WebString; |
| 56 class WebURL; | 56 class WebURL; |
| 57 struct WebDistillabilityFeatures; | 57 struct WebDistillabilityFeatures; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 BLINK_EXPORT WebDocument& operator=(Document*); | 137 BLINK_EXPORT WebDocument& operator=(Document*); |
| 138 BLINK_EXPORT operator Document*() const; | 138 BLINK_EXPORT operator Document*() const; |
| 139 #endif | 139 #endif |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 DECLARE_WEB_NODE_TYPE_CASTS(WebDocument); | 142 DECLARE_WEB_NODE_TYPE_CASTS(WebDocument); |
| 143 | 143 |
| 144 } // namespace blink | 144 } // namespace blink |
| 145 | 145 |
| 146 #endif | 146 #endif |
| OLD | NEW |