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

Side by Side Diff: build/sanitizers/lsan_suppressions.cc

Issue 1128733002: Update from https://crrev.com/328418 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « build/json_schema_api.gni ('k') | build/sanitizers/tsan_suppressions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file contains the default suppressions for LeakSanitizer. 5 // This file contains the default suppressions for LeakSanitizer.
6 // You can also pass additional suppressions via LSAN_OPTIONS: 6 // You can also pass additional suppressions via LSAN_OPTIONS:
7 // LSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to 7 // LSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to
8 // http://dev.chromium.org/developers/testing/leaksanitizer for more info. 8 // http://dev.chromium.org/developers/testing/leaksanitizer for more info.
9 9
10 #if defined(LEAK_SANITIZER) 10 #if defined(LEAK_SANITIZER)
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 "leak:WTF::StringImpl::createUninitialized\n" 59 "leak:WTF::StringImpl::createUninitialized\n"
60 "leak:WTF::StringImpl::create8BitIfPossible\n" 60 "leak:WTF::StringImpl::create8BitIfPossible\n"
61 "leak:blink::MouseEvent::create\n" 61 "leak:blink::MouseEvent::create\n"
62 "leak:blink::WindowProxy::initializeIfNeeded\n" 62 "leak:blink::WindowProxy::initializeIfNeeded\n"
63 "leak:blink::*::*GetterCallback\n" 63 "leak:blink::*::*GetterCallback\n"
64 "leak:blink::CSSComputedStyleDeclaration::create\n" 64 "leak:blink::CSSComputedStyleDeclaration::create\n"
65 "leak:blink::V8PerIsolateData::ensureDomInJSContext\n" 65 "leak:blink::V8PerIsolateData::ensureDomInJSContext\n"
66 "leak:gin/object_template_builder.h\n" 66 "leak:gin/object_template_builder.h\n"
67 "leak:gin::internal::Dispatcher\n" 67 "leak:gin::internal::Dispatcher\n"
68 "leak:blink::LocalDOMWindow::getComputedStyle\n" 68 "leak:blink::LocalDOMWindow::getComputedStyle\n"
69 // This should really be RemoteDOMWindow::create, but symbolization is
70 // weird in release builds. https://crbug.com/484760
71 "leak:blink::RemoteFrame::create\n"
69 72
70 // http://crbug.com/356785 73 // http://crbug.com/356785
71 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\ n" 74 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\ n"
72 75
73 // ================ Leaks in Chromium code ================ 76 // ================ Leaks in Chromium code ================
74 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. 77 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS.
75 // Instead, commits that introduce memory leaks should be reverted. Suppressing 78 // Instead, commits that introduce memory leaks should be reverted. Suppressing
76 // the leak is acceptable in some cases when reverting is impossible, i.e. when 79 // the leak is acceptable in some cases when reverting is impossible, i.e. when
77 // enabling leak detection for the first time for a test target with 80 // enabling leak detection for the first time for a test target with
78 // pre-existing leaks. 81 // pre-existing leaks.
(...skipping 12 matching lines...) Expand all
91 94
92 // http://crbug.com/356306 95 // http://crbug.com/356306
93 "leak:content::SetProcessTitleFromCommandLine\n" 96 "leak:content::SetProcessTitleFromCommandLine\n"
94 97
95 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. 98 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
96 99
97 // End of suppressions. 100 // End of suppressions.
98 ; // Please keep this semicolon. 101 ; // Please keep this semicolon.
99 102
100 #endif // LEAK_SANITIZER 103 #endif // LEAK_SANITIZER
OLDNEW
« no previous file with comments | « build/json_schema_api.gni ('k') | build/sanitizers/tsan_suppressions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698