summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authormark <mark@chromium.org>2015-08-17 22:16:47 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-18 05:17:47 +0000
commit918863e4305589e0165fbf23f284b8e05ee71e4d (patch)
tree15b7e06ecaa85ae861d0e3d4eb787f9757aadbb1 /base
parent23511129ed5900b20cb35023213b64051accceb7 (diff)
downloadchromium_src-918863e4305589e0165fbf23f284b8e05ee71e4d.zip
chromium_src-918863e4305589e0165fbf23f284b8e05ee71e4d.tar.gz
chromium_src-918863e4305589e0165fbf23f284b8e05ee71e4d.tar.bz2
Update Crashpad to 1a770c8237733e2f68bd506a99d05d82fe25fc6b
263582c2d067 Refactor multiprocess test code to allow multiple child processes to be launched a3e313ecd725 10.10 SDK compatibility for Mac OS X 10.6 03663076154a win: Provide strcasecmp() in <strings.h> in compat 43a71b9302bf Update mini_chromium to db01ece1d0dd cd1f8fa3d2f2 Tolerate weird cl_kernels modules on Mac OS X 10.11 5e8e72f91c73 Don’t use DYLD_INSERT_LIBRARIES with a system executable 29eeec3d56ad Remove unused #include following 03663076154a 124ace19bdce crashpad_database_util: Accept --new-report=- to read a new report from standard input 6083a2706d55 Recognize crashreporter_annotations_t version 5 found on OS X 10.11 402bb216fb2b Provide a properly-typed ExpectedSizeForVersion() for types that need it eb7ca8c37419 Fix a few pieces of documentation ad09fd1bc818 DCHECK_IS_ON needs () e74922936da1 Check the size of of the dyld_all_image_infos structure before using it 1a770c823773 Implement more of CrashpadClient on Windows This eliminates Crashpad's dependency on base::strcasecmp(), so that function can be removed. BUG=472900 Review URL: https://codereview.chromium.org/1295163005 Cr-Commit-Position: refs/heads/master@{#343812}
Diffstat (limited to 'base')
-rw-r--r--base/strings/string_util.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/base/strings/string_util.h b/base/strings/string_util.h
index b1cdd39..169726b 100644
--- a/base/strings/string_util.h
+++ b/base/strings/string_util.h
@@ -46,19 +46,6 @@ inline int snprintf(char* buffer, size_t size, const char* format, ...) {
return result;
}
-// TODO(mark) http://crbug.com/472900 crashpad shouldn't use base while
-// being DEPSed in. This backwards-compat hack is provided until crashpad is
-// updated.
-#if defined(OS_WIN)
-inline int strcasecmp(const char* s1, const char* s2) {
- return _stricmp(s1, s2);
-}
-#else // Posix
-inline int strcasecmp(const char* string1, const char* string2) {
- return ::strcasecmp(string1, string2);
-}
-#endif
-
// BSD-style safe and consistent string copy functions.
// Copies |src| to |dst|, where |dst_size| is the total allocated size of |dst|.
// Copies at most |dst_size|-1 characters, and always NULL terminates |dst|, as