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

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

Issue 1122453003: Fix suppression for RemoteDOMWindow to match on release builds too. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment 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 | « no previous file | no next file » | 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 "leak:blink::RemoteDOMWindow::create\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"
70 72
71 // http://crbug.com/356785 73 // http://crbug.com/356785
72 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\ n" 74 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\ n"
73 75
74 // ================ Leaks in Chromium code ================ 76 // ================ Leaks in Chromium code ================
75 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. 77 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS.
76 // Instead, commits that introduce memory leaks should be reverted. Suppressing 78 // Instead, commits that introduce memory leaks should be reverted. Suppressing
77 // 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
78 // 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
79 // pre-existing leaks. 81 // pre-existing leaks.
(...skipping 12 matching lines...) Expand all
92 94
93 // http://crbug.com/356306 95 // http://crbug.com/356306
94 "leak:content::SetProcessTitleFromCommandLine\n" 96 "leak:content::SetProcessTitleFromCommandLine\n"
95 97
96 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. 98 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
97 99
98 // End of suppressions. 100 // End of suppressions.
99 ; // Please keep this semicolon. 101 ; // Please keep this semicolon.
100 102
101 #endif // LEAK_SANITIZER 103 #endif // LEAK_SANITIZER
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698