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

Unified Diff: third_party/WebKit/Source/wtf/AddressSanitizer.h

Issue 2755663002: Move files in wtf/ to platform/wtf/ (Part 2). (Closed)
Patch Set: Fix file name (facepalm). Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/Noncopyable.h ('k') | third_party/WebKit/Source/wtf/Alignment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/AddressSanitizer.h
diff --git a/third_party/WebKit/Source/wtf/AddressSanitizer.h b/third_party/WebKit/Source/wtf/AddressSanitizer.h
index 07b993411cea94966730b297ff986cb924a372ed..812da4448c8541a2750e862982dab0b6055b62a9 100644
--- a/third_party/WebKit/Source/wtf/AddressSanitizer.h
+++ b/third_party/WebKit/Source/wtf/AddressSanitizer.h
@@ -1,42 +1,9 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
+// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WTF_AddressSanitizer_h
-#define WTF_AddressSanitizer_h
-// TODO(kojii): This file will need to be renamed, because it's no more
-// specific to AddressSanitizer.
+#include "platform/wtf/AddressSanitizer.h"
-#include "wtf/build_config.h"
-
-// TODO(sof): Add SyZyASan support?
-#if defined(ADDRESS_SANITIZER)
-#include <sanitizer/asan_interface.h>
-#define NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
-#else
-#define ASAN_POISON_MEMORY_REGION(addr, size) ((void)(addr), (void)(size))
-#define ASAN_UNPOISON_MEMORY_REGION(addr, size) ((void)(addr), (void)(size))
-#define NO_SANITIZE_ADDRESS
-#endif
-
-#if defined(LEAK_SANITIZER)
-#include <sanitizer/lsan_interface.h>
-#else
-#define __lsan_register_root_region(addr, size) ((void)(addr), (void)(size))
-#define __lsan_unregister_root_region(addr, size) ((void)(addr), (void)(size))
-#endif
-
-#if defined(MEMORY_SANITIZER)
-#include <sanitizer/msan_interface.h>
-#define NO_SANITIZE_MEMORY __attribute__((no_sanitize_memory))
-#else
-#define NO_SANITIZE_MEMORY
-#endif
-
-#if defined(THREAD_SANITIZER)
-#define NO_SANITIZE_THREAD __attribute__((no_sanitize_thread))
-#else
-#define NO_SANITIZE_THREAD
-#endif
-
-#endif // WTF_AddressSanitizer_h
+// The contents of this header was moved to platform/wtf as part of
+// WTF migration project. See the following post for details:
+// https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYCAAJ
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/Noncopyable.h ('k') | third_party/WebKit/Source/wtf/Alignment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698