Update ProcessLinux::CanDebug prototype

llvm-svn: 135791
diff --git a/lldb/source/Plugins/Process/Linux/ProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/ProcessLinux.cpp
index e6940fe7..14571ed 100644
--- a/lldb/source/Plugins/Process/Linux/ProcessLinux.cpp
+++ b/lldb/source/Plugins/Process/Linux/ProcessLinux.cpp
@@ -93,7 +93,7 @@
 // Process protocol.
 
 bool
-ProcessLinux::CanDebug(Target &target)
+ProcessLinux::CanDebug(Target &target, bool plugin_specified_by_name)
 {
     // For now we are just making sure the file exists for a given module
     ModuleSP exe_module_sp(target.GetExecutableModule());
diff --git a/lldb/source/Plugins/Process/Linux/ProcessLinux.h b/lldb/source/Plugins/Process/Linux/ProcessLinux.h
index 418ea69..aa31e77 100644
--- a/lldb/source/Plugins/Process/Linux/ProcessLinux.h
+++ b/lldb/source/Plugins/Process/Linux/ProcessLinux.h
@@ -58,7 +58,7 @@
     // Process protocol.
     //------------------------------------------------------------------
     virtual bool
-    CanDebug(lldb_private::Target &target);
+    CanDebug(lldb_private::Target &target, bool plugin_specified_by_name);
 
     virtual lldb_private::Error
     WillLaunch(lldb_private::Module *module);