Chromium Code Reviews| Index: public/web/WebNodeList.h |
| diff --git a/public/web/WebNodeList.h b/public/web/WebNodeList.h |
| index 80484366318afa51219c17f7301e4ea0f0b28f31..79dc4056b8ff6058dbc3fef488b1c64dc44eb4f7 100644 |
| --- a/public/web/WebNodeList.h |
| +++ b/public/web/WebNodeList.h |
| @@ -32,6 +32,7 @@ |
| #define WebNodeList_h |
| #include "../platform/WebCommon.h" |
| +#include "WebNodeCollection.h" |
| namespace WebCore { class NodeList; } |
| #if BLINK_IMPLEMENTATION |
| @@ -54,6 +55,10 @@ public: |
| return *this; |
| } |
| + // FIXME(crbug.com/235008): Remove once chromium has been updated to stop using |
| + // WebCollection as a WebNodeList. |
| + WebNodeList(const WebNodeCollection&); |
|
tkent
2014/01/29 22:56:41
I think BLINK_EXPORT is necessary.
Inactive
2014/01/29 23:53:09
Done.
|
| + |
| BLINK_EXPORT void reset(); |
| BLINK_EXPORT void assign(const WebNodeList&); |