| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 namespace NativeClientVSAddIn | 5 namespace NativeClientVSAddIn |
| 6 { | 6 { |
| 7 using System; | 7 using System; |
| 8 using System.IO; | 8 using System.IO; |
| 9 using System.Text; | 9 using System.Text; |
| 10 using System.Windows.Forms; | 10 using System.Windows.Forms; |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 gdbProcess_.Start(); | 279 gdbProcess_.Start(); |
| 280 } | 280 } |
| 281 catch (Exception e) | 281 catch (Exception e) |
| 282 { | 282 { |
| 283 MessageBox.Show( | 283 MessageBox.Show( |
| 284 string.Format("NaCl-GDB Start Failed. {0}. Path: {1}", e.Message, gd
bPath_)); | 284 string.Format("NaCl-GDB Start Failed. {0}. Path: {1}", e.Message, gd
bPath_)); |
| 285 } | 285 } |
| 286 } | 286 } |
| 287 } | 287 } |
| 288 } | 288 } |
| OLD | NEW |