OLD | NEW |
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 Loading... |
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 "leak:blink::RemoteDOMWindow::create\n" |
69 | 70 |
70 // http://crbug.com/356785 | 71 // http://crbug.com/356785 |
71 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\
n" | 72 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\
n" |
72 | 73 |
73 // ================ Leaks in Chromium code ================ | 74 // ================ Leaks in Chromium code ================ |
74 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. | 75 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. |
75 // Instead, commits that introduce memory leaks should be reverted. Suppressing | 76 // 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 | 77 // 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 | 78 // enabling leak detection for the first time for a test target with |
78 // pre-existing leaks. | 79 // pre-existing leaks. |
(...skipping 12 matching lines...) Expand all Loading... |
91 | 92 |
92 // http://crbug.com/356306 | 93 // http://crbug.com/356306 |
93 "leak:content::SetProcessTitleFromCommandLine\n" | 94 "leak:content::SetProcessTitleFromCommandLine\n" |
94 | 95 |
95 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. | 96 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. |
96 | 97 |
97 // End of suppressions. | 98 // End of suppressions. |
98 ; // Please keep this semicolon. | 99 ; // Please keep this semicolon. |
99 | 100 |
100 #endif // LEAK_SANITIZER | 101 #endif // LEAK_SANITIZER |
OLD | NEW |