Chromium Code Reviews| Index: Source/WTF/wtf/text/StringStatics.h |
| diff --git a/Source/WebCore/Modules/quota/StorageQuotaCallback.idl b/Source/WTF/wtf/text/StringStatics.h |
| similarity index 90% |
| copy from Source/WebCore/Modules/quota/StorageQuotaCallback.idl |
| copy to Source/WTF/wtf/text/StringStatics.h |
| index f8dd2544e070a56ee57a5750fafda9c9ee13313a..73097bc5cdbaf2e17318bd93cdcb1c445f676b27 100644 |
| --- a/Source/WebCore/Modules/quota/StorageQuotaCallback.idl |
| +++ b/Source/WTF/wtf/text/StringStatics.h |
| @@ -28,8 +28,19 @@ |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| -[ |
| - Callback |
| -] interface StorageQuotaCallback { |
|
eseidel
2013/04/10 20:53:50
I love how rietveld picks a random file to compare
abarth-chromium
2013/04/10 21:00:51
Yeah, I'm not sure if it's rietveld or git.
darin (slow to review)
2013/04/11 07:02:24
I believe this is a side-effect of the similarity
|
| - boolean handleEvent(unsigned long long grantedQuotaInBytes); |
| +#ifndef StringStatics_h |
| +#define StringStatics_h |
| + |
| +namespace WTF { |
| + |
| +class StringStatics { |
| +public: |
| + static void init(); |
| + |
| +private: |
| + StringStatics(); |
| }; |
| + |
| +} |
| + |
| +#endif |