Chromium Code Reviews| Index: public/platform/WebData.h |
| diff --git a/public/platform/WebData.h b/public/platform/WebData.h |
| index 528a2e0afe0726d2200feaa7171b38abd43af86e..5a1b279db21098331df7e9856e7087ff48d98db9 100644 |
| --- a/public/platform/WebData.h |
| +++ b/public/platform/WebData.h |
| @@ -74,6 +74,9 @@ public: |
| size_t size() const; |
| const char* data() const; |
| +#if INSIDE_BLINK |
| + String toASCIIString() const; |
|
eseidel
2014/09/04 07:05:34
I think we normally use CString for ascii-only str
vivekg
2014/09/04 07:44:28
This function was required earlier. Now that we ha
|
| +#endif |
| bool isEmpty() const { return !size(); } |
| bool isNull() const { return m_private.isNull(); } |