Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Unified Diff: Source/WTF/wtf/text/StringStatics.h

Issue 13686020: Make HTMLNames threadsafe (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove extra assert Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698