Chromium Code Reviews| Index: public/platform/WebData.h |
| diff --git a/public/platform/WebData.h b/public/platform/WebData.h |
| index 5630c71d162cd4a494b1f62abc7b0907dc9cf4b5..a416218400f4f21588fef4ac123732687efddae2 100644 |
| --- a/public/platform/WebData.h |
| +++ b/public/platform/WebData.h |
| @@ -31,6 +31,7 @@ |
| #ifndef WebData_h |
| #define WebData_h |
| +#include "WebCString.h" |
|
abarth-chromium
2014/08/03 14:53:31
This include is no longer necessary.
|
| #include "WebCommon.h" |
| #include "WebPrivatePtr.h" |
| @@ -75,6 +76,9 @@ public: |
| size_t size() const; |
| const char* data() const; |
| +#if INSIDE_BLINK |
| + String toASCIIString() const; |
| +#endif |
| bool isEmpty() const { return !size(); } |
| bool isNull() const { return m_private.isNull(); } |