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

Unified Diff: tools/cr/cr/actions/gdb.py

Issue 142933004: [cr tool] Make context implicit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/cr/cr/actions/debugger.py ('k') | tools/cr/cr/actions/gyp.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/cr/cr/actions/gdb.py
diff --git a/tools/cr/cr/actions/gdb.py b/tools/cr/cr/actions/gdb.py
index 64386dbce54cdd740f608f7a50cfbae37167fc6f..841c2c180889e0f47da8be7447f4f314c6d23191 100644
--- a/tools/cr/cr/actions/gdb.py
+++ b/tools/cr/cr/actions/gdb.py
@@ -17,7 +17,7 @@ class GdbDebugger(cr.Debugger):
return (cr.LinuxPlatform.GetInstance().is_active and
self.DETECTED.Find('CR_GDB'))
- def Invoke(self, context, targets, arguments):
+ def Invoke(self, targets, arguments):
for target in targets:
cr.Host.Execute(
target,
@@ -27,7 +27,7 @@ class GdbDebugger(cr.Debugger):
*arguments
)
- def Attach(self, context, targets, arguments):
+ def Attach(self, targets, arguments):
raise NotImplementedError('Attach not currently supported for gdb.')
@classmethod
« no previous file with comments | « tools/cr/cr/actions/debugger.py ('k') | tools/cr/cr/actions/gyp.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698