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

Unified Diff: third_party/WebKit/Source/wtf/text/CString.h

Issue 2565883002: Test for codegen of RELEASE_ASSERT vs CHECK in WTF (Closed)
Patch Set: . Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/text/CString.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/text/CString.h
diff --git a/third_party/WebKit/Source/wtf/text/CString.h b/third_party/WebKit/Source/wtf/text/CString.h
index dc75400e553f2e165cabbed3b43c30eaa5cb3b22..3a05783307fc9f541b1be57158196124ffe8d488 100644
--- a/third_party/WebKit/Source/wtf/text/CString.h
+++ b/third_party/WebKit/Source/wtf/text/CString.h
@@ -49,6 +49,8 @@ class WTF_EXPORT CStringImpl : public RefCounted<CStringImpl> {
static PassRefPtr<CStringImpl> createUninitialized(size_t length,
char*& data);
+ static PassRefPtr<CStringImpl> createUninitializedCHECK(size_t length,
+ char*& data);
const char* data() const { return reinterpret_cast<const char*>(this + 1); }
size_t length() const { return m_length; }
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/text/CString.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698