OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "config.h" | |
6 #include "core/timing/ConsoleMemory.h" | |
7 | |
8 #include "core/frame/Console.h" | |
9 #include "core/timing/MemoryInfo.h" | |
10 | |
11 namespace blink { | |
12 | |
13 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ConsoleMemory); | |
14 | |
15 DEFINE_TRACE(ConsoleMemory) | |
16 { | |
17 visitor->trace(m_memory); | |
18 WillBeHeapSupplement<Console>::trace(visitor); | |
19 } | |
20 | |
21 const char* ConsoleMemory::supplementName() | |
dsinclair
2015/02/24 16:18:43
If left here, should this have a // static to be c
| |
22 { | |
23 return "ConsoleMemory"; | |
dsinclair
2015/02/24 16:18:43
Any reason to not put this in the header?
| |
24 } | |
25 | |
26 // static | |
27 ConsoleMemory& ConsoleMemory::from(Console& console) | |
28 { | |
29 ConsoleMemory* supplement = static_cast<ConsoleMemory*>(WillBeHeapSupplement <Console>::from(console, supplementName())); | |
30 if (!supplement) { | |
31 supplement = new ConsoleMemory(); | |
32 provideTo(console, supplementName(), adoptPtrWillBeNoop(supplement)); | |
33 } | |
34 return *supplement; | |
35 } | |
36 | |
37 // static | |
38 MemoryInfo* ConsoleMemory::memory(Console& console) | |
39 { | |
40 return ConsoleMemory::from(console).memory(); | |
41 } | |
42 | |
43 MemoryInfo* ConsoleMemory::memory() | |
44 { | |
45 if (!m_memory) | |
46 m_memory = MemoryInfo::create(); | |
47 | |
48 return m_memory.get(); | |
49 } | |
50 | |
51 } // namespace blink | |
OLD | NEW |