OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> | 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
4 * Copyright (C) 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 if (m_domStorageAgent) | 139 if (m_domStorageAgent) |
140 return m_domStorageAgent->storageId(storage); | 140 return m_domStorageAgent->storageId(storage); |
141 return String(); | 141 return String(); |
142 } | 142 } |
143 | 143 |
144 ScriptDebugServer& InjectedScriptHost::scriptDebugServer() | 144 ScriptDebugServer& InjectedScriptHost::scriptDebugServer() |
145 { | 145 { |
146 return m_debuggerAgent->scriptDebugServer(); | 146 return m_debuggerAgent->scriptDebugServer(); |
147 } | 147 } |
148 | 148 |
| 149 void InjectedScriptHost::setBreakpoint(const String& scriptId, int lineNumber, i
nt columnNumber) |
| 150 { |
| 151 m_debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, Inspector
DebuggerAgent::DebugCommandBreakpointSource); |
| 152 } |
| 153 |
| 154 void InjectedScriptHost::removeBreakpoint(const String& scriptId, int lineNumber
, int columnNumber) |
| 155 { |
| 156 m_debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, Inspec
torDebuggerAgent::DebugCommandBreakpointSource); |
| 157 } |
149 | 158 |
150 } // namespace WebCore | 159 } // namespace WebCore |
151 | 160 |
OLD | NEW |