Scott Violet | 8af2ef7 | 2017-08-02 21:59:26 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "content/public/browser/discardable_shared_memory_manager.h" |
| 6 | |
| 7 | #include "content/browser/browser_main_loop.h" |
| 8 | |
| 9 | namespace content { |
| 10 | |
| 11 | discardable_memory::DiscardableSharedMemoryManager* |
| 12 | GetDiscardableSharedMemoryManager() { |
| 13 | return content::BrowserMainLoop::GetInstance() |
| 14 | ->discardable_shared_memory_manager(); |
| 15 | } |
| 16 | |
| 17 | } // namespace content |