| Index: include/core/SkString.h
|
| diff --git a/include/core/SkString.h b/include/core/SkString.h
|
| index 93514f2659febb67a6588cdc214595f278c825a4..4625dd13ccaade648262ccc57b56b33253164eaa 100644
|
| --- a/include/core/SkString.h
|
| +++ b/include/core/SkString.h
|
| @@ -126,6 +126,7 @@ public:
|
| explicit SkString(const char text[]);
|
| SkString(const char text[], size_t len);
|
| SkString(const SkString&);
|
| + SkString(SkString&&);
|
| ~SkString();
|
|
|
| bool isEmpty() const { return 0 == fRec->fLength; }
|
| @@ -172,6 +173,7 @@ public:
|
| // these methods edit the string
|
|
|
| SkString& operator=(const SkString&);
|
| + SkString& operator=(SkString&&);
|
| SkString& operator=(const char text[]);
|
|
|
| char* writable_str();
|
|
|