| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #include <windows.h> | 5 #include <windows.h> |
| 6 #include <objidl.h> | 6 #include <objidl.h> |
| 7 #include <mlang.h> | 7 #include <mlang.h> |
| 8 | 8 |
| 9 #include "chrome/renderer/render_process.h" | 9 #include "chrome/renderer/render_process.h" |
| 10 | 10 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 clearer_factory_.NewRunnableMethod(&RenderProcess::ClearSharedMemCache), | 199 clearer_factory_.NewRunnableMethod(&RenderProcess::ClearSharedMemCache), |
| 200 5000 /* 5 seconds */); | 200 5000 /* 5 seconds */); |
| 201 } | 201 } |
| 202 | 202 |
| 203 void RenderProcess::Cleanup() { | 203 void RenderProcess::Cleanup() { |
| 204 #ifndef NDEBUG | 204 #ifndef NDEBUG |
| 205 // log important leaked objects | 205 // log important leaked objects |
| 206 webkit_glue::CheckForLeaks(); | 206 webkit_glue::CheckForLeaks(); |
| 207 #endif | 207 #endif |
| 208 } | 208 } |
| 209 |
| OLD | NEW |