Annotate leak.
Comments in code say that this is intentional leak.
BUG=390498
Review URL: https://codereview.chromium.org/360263002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281004 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/url/url_util.cc b/url/url_util.cc
index 9f2ad2c6..8ab889fe 100644
--- a/url/url_util.cc
+++ b/url/url_util.cc
@@ -7,6 +7,7 @@
#include <string.h>
#include <vector>
+#include "base/debug/leak_annotations.h"
#include "base/logging.h"
#include "url/url_canon_internal.h"
#include "url/url_file.h"
@@ -383,6 +384,7 @@
// Dulicate the scheme into a new buffer and add it to the list of standard
// schemes. This pointer will be leaked on shutdown.
char* dup_scheme = new char[scheme_len + 1];
+ ANNOTATE_LEAKING_OBJECT_PTR(dup_scheme);
memcpy(dup_scheme, new_scheme, scheme_len + 1);
InitStandardSchemes();