Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: Source/core/inspector/InjectedScriptHost.cpp

Issue 14294004: Implementing console command 'debug'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/inspector/InjectedScriptHost.h ('k') | Source/core/inspector/InjectedScriptHost.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698