| Index: public/platform/WebCString.h
|
| diff --git a/public/platform/WebCString.h b/public/platform/WebCString.h
|
| index 81e2065fd347c9e03f2599f119bc667f07a4d22a..c80fc59d0aa410af57e4caf194f2398da939d72f 100644
|
| --- a/public/platform/WebCString.h
|
| +++ b/public/platform/WebCString.h
|
| @@ -36,7 +36,8 @@
|
|
|
| #if INSIDE_WEBKIT
|
| #include <wtf/Forward.h>
|
| -#else
|
| +#endif
|
| +#if !INSIDE_WEBKIT || defined(UNIT_TEST)
|
| #include <string>
|
| #endif
|
|
|
| @@ -105,7 +106,8 @@ public:
|
| assign(s.data(), s.length());
|
| return *this;
|
| }
|
| -
|
| +#endif
|
| +#if !INSIDE_WEBKIT || defined(UNIT_TEST)
|
| operator std::string() const
|
| {
|
| size_t len = length();
|
|
|