OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 Google Inc. All rights reserved. | 2 * Copyright (c) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 PageScriptDebugServer::PageScriptDebugServer() | 90 PageScriptDebugServer::PageScriptDebugServer() |
91 : ScriptDebugServer(s_mainThreadIsolate) | 91 : ScriptDebugServer(s_mainThreadIsolate) |
92 , m_pausedFrame(nullptr) | 92 , m_pausedFrame(nullptr) |
93 { | 93 { |
94 } | 94 } |
95 | 95 |
96 PageScriptDebugServer::~PageScriptDebugServer() | 96 PageScriptDebugServer::~PageScriptDebugServer() |
97 { | 97 { |
98 } | 98 } |
99 | 99 |
100 void PageScriptDebugServer::trace(Visitor* visitor) | 100 DEFINE_TRACE(PageScriptDebugServer) |
101 { | 101 { |
102 #if ENABLE(OILPAN) | 102 #if ENABLE(OILPAN) |
103 visitor->trace(m_listenersMap); | 103 visitor->trace(m_listenersMap); |
104 visitor->trace(m_pausedFrame); | 104 visitor->trace(m_pausedFrame); |
105 #endif | 105 #endif |
106 ScriptDebugServer::trace(visitor); | 106 ScriptDebugServer::trace(visitor); |
107 } | 107 } |
108 | 108 |
109 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, LocalFram
e* localFrameRoot) | 109 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, LocalFram
e* localFrameRoot) |
110 { | 110 { |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 UseCounter::muteForInspector(); | 240 UseCounter::muteForInspector(); |
241 } | 241 } |
242 | 242 |
243 void PageScriptDebugServer::unmuteWarningsAndDeprecations() | 243 void PageScriptDebugServer::unmuteWarningsAndDeprecations() |
244 { | 244 { |
245 FrameConsole::unmute(); | 245 FrameConsole::unmute(); |
246 UseCounter::unmuteForInspector(); | 246 UseCounter::unmuteForInspector(); |
247 } | 247 } |
248 | 248 |
249 } // namespace blink | 249 } // namespace blink |
OLD | NEW |